-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 1.33 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
52
53
54
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<title> Final Project </title>
</head>
<body>
<header>
<h1> SHREYAS VERMA </h1>
<h1> AKSHAY PARIHAR </h1>
<nav>
<a href="one.html">One</a>
<a href="two.html">Two</a>
<a href="three.html">Three</a>
<a href="music.html">Music</a>
</nav>
</header>
<section>
<h2> Favorite Foods </h2>
<ul>
<li>Mangoes</li>
<li>Dark Chocolates</li>
<li>Pizza</li>
<li>Daal Baati</li>
</ul>
</section>
<section>
<h2> Achievements </h2>
<p>Progress in this course(100%)<progress value="1"></progress><br/>
Progress in the Specialization capstone(20%)<progress value="20"max="100"></progress><br/>
Progress in life goals(51%)<progress value="51"max="100"></progress></p>
</section>
<section>
<h2> More About Me </h2>
<details open>
<summary>My Childhood</summary>
<p>I am born and brought up in Bhopal,India. This place is full of lakes and thus pleasant atmosphere is its feature point.I really like riding this gives me immense relaxation and motivation in life.</p>
</details>
</section>
<footer>
<p>
<img src="http://www.intro-webdesign.com/images/newlogo.png"alt="new logo">
This page was created by SHREYAS VERMA & Colleen van Lent. To learn more about web design, visit <a href="http://www.intro-webdesign.com">Into to Web Design</a>
</p>
</footer>
</body>
</html>