-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.html
More file actions
62 lines (58 loc) · 1.69 KB
/
Project.html
File metadata and controls
62 lines (58 loc) · 1.69 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
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
Michigan Project
</title>
</head>
<body>
<header>
<h1>
Darshil Tushar Papalkar
</h1>
</header>
<div class="link">
<a href="https://www.facebook.com/" target="_blank">One</a>
<a href="https://www.instagram.com/" target="_blank">Two</a>
<a href="https://twitter.com/" target="_blank">Three</a>
<a href="https://www.linkedin.com/" target="_blank">Four</a>
</div>
<h2>
Favorite Foods</h2>
<ul>
<li>Apples</li>
<li>Mangoes</li>
<li>Litches</li>
<li>Watermelon</li>
</ul>
<h2>Achievements</h2>
<p>
Progress in this course(100%)
<progress value="100" max="100">100%</progress>
<br> Progress in the Specialization capstone(20%)
<progress value="20" max="100">20%</progress>
<br>Progress in life goal(90%)
<progress value="90" max="100">90%</progress> </p>
<h2>More About Me</h2>
<details>
<summary>My Childhood</summary>
<p>
I was born in Gujarat,India.
</p>
</details>
<footer>
<img src="http://www.intro-webdesign.com/images/newlogo.png" alt="Web Design Logo" />
<br>
This page was created by Darshil Tushar Papalkar and Colleen van Lent. To learn more about web design, visit
<a href="http://www.intro-webdesign.com." target="_blank">Intro to Web Design</a>.
</footer>
</body>
<style>
.link a{
text-decoration: none;
margin-right: 5%;
font-size: 20px;
}
</style>
</html>