-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Colleen</title>
<!-- ADD a LINK TO link YOUR STYLE SHEET HERE!! -->
<link rel="stylesheet" href="hw2.css">
</head>
<body>
<header>
<h1>Colleen van Lent</h1>
<nav>
<a href = "">One</a>
<a href = "">Two</a>
<a href = "">Three</a>
<a href = "">Your Choice</a>
</nav>
</header>
<section>
<h2>Favorite Foods</h2>
<ul>
<li>Apples</li>
<li>Pizza</li>
<li>Crab</li>
<li>Chocolate Cake</li>
</ul>
</section>
<section>
<h2>Achievements</h2>
<p> Progress in this course <100%></100%><progress value = "1"></progress><br/>Progress in the Specialization (20%) <progress max = "5" value = "1"></progress><br/> Progress in life goals (67%)<progress max = "100" value = "67"></progress></p>
</section>
<section>
<h2>More About Me</h2>
<details open><summary>My Childhood</summary>
<p>I grew up in Ashtabula Ohio. I lived near Lake Erie and I really miss the sunsets over the water. </details>
</section>
<footer>
<p><img src = "http://www.intro-webdesign.com/images/newlogo.png" alt = "logo"/> This page was created by your name & Colleen van Lent. To learn more about web design, visit <a href="http://www.intro-webdesign.com">Intro to Web Design</a>.</p>
</footer>
</body>
</html>