-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html.html
More file actions
54 lines (45 loc) · 1.4 KB
/
Index.html.html
File metadata and controls
54 lines (45 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "UTF-8">
<title>Index.html</title>
</head>
<body>
<h1>Zakaria Elghazali</h1>
<a href="#Favorite Foods">One</a>
<a href="#Achievments">Two</a>
<a href="#finally">Three</a>
<a href="#More About Me">Fourth</a>
<header id="Favourie">
<h1>Favorite Foods</h1>
<ul>
<li>Bestilla</li>
<li>Tajin</li>
<li>Pizza</li>
<li>AnyHomeMadeFood</li>
</ul>
</header>
<nav id="Achievments">
<h1>Achievments</h1>
<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"> 100% </progress><br>
<label for="index.html">Progress in life goals (67%) </label>
<progress id="file" value="67" max="100"> 100% </progress><br>
</nav>
<main id="main">
<h1>More About Me</h1>
<details>
<summary>My Childhood</summary>
<p>I grew up in Agadir, Morocco. I lived there for 20 years, and i wish i could go back there.</p>
</details>
</main>
<footer id="finally">
<img src="http://www.intro-webdesign.com/images/newlogo.png"
alt ="logoimage"> <br>
This page was created by ZakariaElGhazali & Ms Collen van Lent. To learn more about web design, visit <a href="http://intro-webdesign.com/projectdescription.html">Intro to Web Design</a>.
</footer><br>
</body>
</html>