Skip to content

Commit 629ec30

Browse files
committed
Some test HTML code
1 parent d0708ca commit 629ec30

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

index.html

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html>
2+
<html lang = "en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title> My First Page</title>
6+
</head>
7+
<body>
8+
<h1>Colleen van Lent</h1>
9+
<header>
10+
<nav>
11+
<a href = "www.coursera.org">One</a>
12+
<a href = "www.coursera.org">Two</a>
13+
<a href = "www.coursera.org">Three</a>
14+
<a href = "www.coursera.org">Your Choice</a>
15+
</nav>
16+
</header>
17+
<section>
18+
<h2>Favorite Foods</h2>
19+
<ul>
20+
<li>Apples</li>
21+
<li>Pizza</li>
22+
<li>Crab</li>
23+
<li>Chocolate Cake</li>
24+
</ul>
25+
</section>
26+
<section>
27+
<h2>Achievements</h2>
28+
<p>
29+
Progress in this course (100%)<progress value="100" max = "100"></progress><br>
30+
Progress in the Specialization capstone (20%)<progress value="20" max="100"></progress><br>
31+
Progress in life goals (67%) <progress value="67" max="100"></progress>
32+
</p>
33+
</section>
34+
<section>
35+
<h2>More About Me</h2>
36+
<details>
37+
<summary>My Chilhood</summary>
38+
I grew up in Ashtabula Ohio. I live near Lake Erie and I really miss the sunsets over the water.
39+
</details>
40+
</section>
41+
<footer>
42+
<p>
43+
<img src="http://www.intro-webdesign.com/images/newlogo.png" alt="Logo"> This page is created by your name &amp; Colleen van Lent. To learn more about web design, visit <a href="http://www.intro-webdesign.com/">Intro to Web Design</a>.
44+
45+
</p>
46+
</footer>
47+
</body>
48+
</html>

0 commit comments

Comments
 (0)