forked from itscodenation/int-u2l1-23-24-student-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (55 loc) · 1.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>Do Now</title>
</head>
<body>
<div class="navbar">
<a href="index.html">Do Now</a>
<a href="code-along.html">Code Along</a>
<a href="code-solo.html">Code Solo</a>
</div>
<div class="container">
<!-- 1. Change the text to say your name instead of "Hello Coder!". -->
<h1>Hello Coder!</h1>
<!-- 2. Change the text to be the city you live in. -->
<p>City: Code Nation City</p>
<!-- 3. Change the text to be the school you go to. -->
<p>School: Code Nation Academy</p>
<!-- Optional: Try to make another line of text that says your favorite type of music. Hint: Use the code on the previous lines as a guide. -->
</div>
</body>
<!-- The code below styles the page. DO NOT EDIT. -->
<style>
.container {
border: 5px white solid;
padding: 30px;
border-radius: 200px 100px;
text-align: center;
position: relative;
top: 50px;
left: 10px;
}
body {
background-color: #f54542;
color: white;
}
.navbar {
overflow: hidden;
background-color: #333;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background: #ddd;
color: black;
}
</style>
</html>