-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 2.05 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Diary</title>
</head>
<body>
<h1>Vaishnavi Chaurasia</h1>
<nav>
<a href="www.google.com">One</a>
<a href="www.google.com">Two</a>
<a href="www.google.com">Three</a>
<a href="www.google.com">Google</a>
</nav>
<section>
<h2>Favourite Foods</h2>
<ul>
<li>Pizza</li>
<li>Pasta</li>
<li>Maggi</li>
<li>Patties</li>
</ul>
</section>
<section>
<h2>Achievements</h2>
<label for="progress_course">Progress in this course(100%)</label>
<meter id="progress_course" value="100" min="0" max="100"></meter><br>
<label for="progress_specialization">Progress in the Specialization capstone (20%)</label>
<meter id="progress_specialization" value="20" min="0" max="100"></meter><br>
<label for="progress_LifeGoals">Progress in life goals (80%)</label>
<meter id="progress_LifeGoals" value="80" min="0" max="100"></meter><br>
</section>
<section>
<h2>More About Me</h2>
<details>
<summary>My Childhood</summary>
<p>My name is Vaishnavi Chaurasia.My birthplace is Mathura.<br>Mathura is a holy city for Hinduism and is considered the heart of Brij Bhoomi, the land of Krishna.<br> My chilhood spent here.I wish everyone must visit mathura once in there life.</p>
</details>
<details>
<summary>My Qualification</summary>
<p>I am an undergraduate student. I am working hard towards my goals.<br> I want to be a Web Developer.I believe i will achieve it very soon.</p>
</details>
<footer>
<img src="http://www.intro-webdesign.com/images/newlogo.png">This page was created by Vaishnavi & Colleen van Lent. To learn more about web design,<a href=" http://www.intro-webdesign.com.">visit Intro to Web Design</a>
</footer>
</section>
</body>
</html>