forked from Abhishekjindal09/Sports-Rugby-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproj.html
More file actions
51 lines (44 loc) · 1.37 KB
/
proj.html
File metadata and controls
51 lines (44 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Project</title>
</head>
<body>
<h1>Abhishek Jindal</h1>
<a href="https://www.wikipedia.org/">One</a>
<a href="https://www.netflix.com">Two</a>
<a href="https://www.youtube.com/">Three</a>
<a href="https://www.spotify.com/in/">Peace</a>
<section>
<h2>Favorite Foods</h2>
<ul>
<li>Pizza</li>
<li>Biryani</li>
<li>Kebab</li>
<li>brownie</li>
</section>
<section>
<h2>Achievements</h2>
<label for="file">Progress in this course (100%)</label>
<progress id="file" value="100" max="100">100%</progress>
<br>
<label for="file">Progress in the Specialization capstone (20%)</label>
<progress id="file" value="20" max="100">20%</progress>
<br>
<label for="file">Progress in life goals (23%)</label>
<progress id="file" value="23" max="100">23%</progress>
</section>
<section>
<h2>More About Me</h2>
<details>
<summary>My Childhood</summary>
<p>I grew up in Mumbai. A city that never sleeps...</p>
</details>
</section>
<footer>
<img src="http://www.intro-webdesign.com/images/newlogo.png" alt="New logo" height="120" width="350">
<p>This page was created by Abhishek Jindal & Colleen van Lent. To learn more about web design, visit <a href="http://www.intro-webdesign.com."> Intro to Web Design.</a></p>
</footer>
</body>
</html>