forked from itscodenation/int-u2l1-23-24-student-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
code-solo.html
58 lines (45 loc) · 1.39 KB
/
code-solo.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
<!DOCTYPE html>
<html>
<head>
<!-- 1. Change the title to My Practice Page or a title you think is better - your pick. -->
<title>Code Solo</title>
</head>
<body>
<!-- nav bar -->
<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>
<!-- 2. Add the biggest header tag and make the content your name. -->
<!-- 3. Add another header tag, but make it smaller. Make the content say "Bio" (do not include the quotes)-->
<!-- 4. Add a paragraph tag. For the content, write 6 short sentences about yourself. -->
<!-- 5. After the third sentence in your bio, add a break tag. -->
<!-- Challenge: go to this link in your browser: https://www.w3schools.com/tags/ref_byfunc.asp
and try adding an unordered list. Include a couple list items of things you like. -->
</body>
<!-- The code below styles the page. DO NOT EDIT. -->
<style>
img {
width: 500px;
border-radius: 10px;
}
.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>