-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Final Project</title>
</head>
<body>
<header>
<h1>NGUYỄN PHAN PHƯỚC THỊNH</h1>
<nav>
<a href = "https://www.gmail.com">One</a>
<a href = "https://www.twitter.com">Two</a>
<a href = "https://www.google.com">Three</a>
<a href = "https://github.com/peateaVN/First_HTML_Site">Github</a><br>
</nav>
</header>
<section>
<h2>Favorite Foods</h2>
<ul>
<li>Crab Soup</li>
<li>Kho Quẹt</li>
<li>Fried Chicken</li>
<li>Phở</li>
</ul>
</section>
<section>
<h2>Achievements</h2>
Progress in this course (100%)
<progress value="100" max="100"></progress>
<br>
Progress in the Specialization capstone (20%)
<progress value="20" max="100"></progress>
<br>
Progress in life goals (33%)
<progress value="33" max="100"></progress>
</section>
<section>
<h2>More About Me</h2>
<details>
<summary>My Childhood</summary>I grew up in a small town in the Vietnamese Southwest. It was there that I experience the wonders of youth: the friendships I've made, the girl I fell for...
This was the place that defined the person that I am today.
</details>
</section>
<footer>
<img src="http://www.intro-webdesign.com/images/newlogo.png" alt="Web Design For Everyone">
This page was created by Nguyễn Phan Phước Thịnh & Colleen van Lent.
To learn more about web design, visit
<a href="http://www.intro-webdesign.com/">Intro to Web Design</a>
</footer>
</body>
</html>