-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFinalProject.html
More file actions
64 lines (60 loc) · 1.43 KB
/
FinalProject.html
File metadata and controls
64 lines (60 loc) · 1.43 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Final Project Page</title>
</head>
<body>
<header>
<h1>Tamalika Mukherjee</h1>
<nav>
<a href="#One">One</a>
<a href="#Two">Two</a>
<a href="#Three">Three</a>
<a href="#Four">Four</a>
</nav>
</header>
<section>
<a id="One"></a>
<h2>Favorite Foods</h2>
<ul>
<li>Mutton Biriyani</li>
<li>Muri Ghonto</li>
<li>Chingri Macher Malaikari</li>
<li>Rui Macher Kalia</li>
</ul>
</section>
<section>
<a id="Two"></a>
<h2>Achievements</h2>
<p>
Progress in this course (100%)
<progress value="100" max="100"></progress>
</p>
<p>
Progress in the Specialization capstone (20%)
<progress value="20" max="100"></progress>
</p>
<p>
Progress in life goals (10%)
<progress value="10" max="100"></progress>
</p>
</section>
<section>
<a id="Three"></a>
<h2>More About Me</h2>
<details>
<summary>My childhood</summary>
<p>
I grew up in Kolkata. The city is the cultural capital of India.
</p>
</details>
</section>
<footer>
<a id="Four"></a>
<img src="http://www.intro-webdesign.com/images/newlogo.png" alt="Intro to Web Design">
This page was created by Tamalika Mukherjee & 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>