forked from SmitaRajput/SOLProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (60 loc) · 1.39 KB
/
index.html
File metadata and controls
63 lines (60 loc) · 1.39 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
63
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<title>Project</title>
<link rel ="stylesheet" href = "C:\Users\User\Desktop\SOLProjects/hw1.css">
</head>
<body>
<header>
<h1>Smita Rajput</h1>
<nav>
<a href = " ">One</a>
<a href = " ">Two</a>
<a href = " ">Three</a>
<a href = " ">Game</a>
</nav>
</header>
<section class = "half">
<h2>Favorite Foods</h2>
<ul>
<li>Mango</li>
<li>Lady's Finger</li>
<li>Cake</li>
<li>Rasgulla</li>
</ul>
</section>
<section class = "half">
<h2>Achievements</h2>
<p>Progress in this Course(100%)</100%>
<progress value = "1">
</progress>
<br/>
Progress in the Specialization capstone (20%)
<progress max = "5" value = "1" >
</progress>
<br/>
Progress in life goals: (67%)
<progress max = "100" value = "67" >
</progress>
</p>
<br/>
</section>
<section class = "whole">
<h2>More About Me</h2>
<details open>
<summary>My Childhood</summary>
<p>I grew up in Chalisgaon.I lived near a garden and I really miss my friends</p>
</details>
</section>
<br>
<br>
<br>
<br>
<footer>
<p><img src="http://www.intro-webdesign.com/images/newlogo.png" alt="logo" class="center"/>
"This page was created by Smita Rajput and 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>