-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
57 lines (49 loc) · 1.62 KB
/
Copy pathsample.html
File metadata and controls
57 lines (49 loc) · 1.62 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
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8">
<title>Mayank Raj Project</title>
<body style="margin:25px">
<header>
<h1 style="color:blue;text-align:center">Mayank Raj</h1>
<nav style="background-color:lightgreen">
<a href="https://www.google.com/">One</a>
<a href="https://www.wikipedia.org/">Two</a>
<a href="https://www.reddit.com/">Three</a>
<a href="https://www.facebook.com/">facebook</a>
</nav>
</header>
<section style="background-color:lightgrey">
<h2>Favorite Foods</h2>
<ul>
<li>Pizza</li>
<li>Ice Cream</li>
<li>Kadhai Chicken </li>
<li>Chicken Biryani</li>
</ul>
</section>
<section style="background-color:lightgrey">
<h2>Achievements</h2>
<p> 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 (25%)
<progress value="25" max="100"></progress></p>
</section>
<section>
<h2>More About Me</h2>
<details>
<summary>My Childhood</summary>
<p>I grew up in Bihar,India.I completed my schooling from here.It was a really amazing experience at school </p>
</details>
</section>
<footer>
<img src=" http://www.intro-webdesign.com/images/newlogo.png" alt="newlogo" width="10%"/>
This page was created by Mayank Raj & 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>