-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (52 loc) · 2.18 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
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8">
<title>SaiRam</title>
</head>
<body>
<header>
<h1>Sai Ram Pendyala</h1>
<!--Navigation-->
<nav>
<a href = "https://validator.w3.org/" target="_blank"><u>One</u></a>
<a href = "https://validator.w3.org/" target="_blank"><u>Two</u></a>
<a href = "https://validator.w3.org/" target="_blank"><u>Three</u></a>
<a href = "https://validator.w3.org/" target="_blank"><u>Four</u></a>
</nav>
</header>
<!--Foods Section-->
<section>
<h2>Favorite Foods</h2>
<ul>
<li>Chicken Tandoori</li>
<li>Prawns</li>
<li>Kaaju Barfi</li>
<li>Chocolate Cake</li>
</ul>
</section>
<!--Achievements Section-->
<section>
<h2>Achievements</h2>
<p>
Progress in this Course(100%)<progress min = "0" max = "100" value= "100">100%</progress><br/>
Progress in this Specialization capstone(20%)<progress min = "0" max = "100" value= "20">20%</progress><br/>
Progress in Life goals(40%)<progress min = "0" max = "100" value= "40">40%</progress>
</p>
</section>
<!--More About Me Section-->
<section>
<h2>More About Me</h2>
<details open>
<summary>My Childhood</summary>
<p>
My Childhood was very fun. I would spend a lot of time playing games and watching sceneries in my Village.
</p>
</details>
</section>
</body>
<!--Footer-->
<footer>
<p><img src = "http://www.intro-webdesign.com/images/newlogo.png" width="15%" alt = "newlogo">The page was created by Sai Ram & Colleen van Lent. To learn more about web design, visit <a href = "http://www.intro-webdesign.com" target="_blank"><u>Intro to web design.</u></a></p>
</footer>
</html>