-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinalProject.html
More file actions
51 lines (47 loc) · 1.31 KB
/
Copy pathfinalProject.html
File metadata and controls
51 lines (47 loc) · 1.31 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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Final project</title>
</head>
<body>
<h1>Hani abdel ghani</h1>
<a href="/learn-html.html">One</a>
<a href="/learn-css.html">Two</a>
<a href="/learn-javascript.html">Three</a>
<a href="/learn-php.html">Four</a>
</nav>
<section>
<h2>Favorite Foods</h2>
<ul>
<li>apple</li>
<li>pizza</li>
<li>Crab</li>
<li>Chocolate Cake</li>
</ul>
</section>
<section>
<h2>Achievements</h2>
<p>Progress in this course (100%)
<progress value = "100" max = "100"/>
</p>
<p>Progress in Specialization (20%)
<progress value = "20" max = "100"/>
</p>
<p>Progress in life goals (3%)
<progress value = "3" max = "100"/>
</p>
</section>
<section>
<h2>More about me</h2>
<details>
<summary>My childhood</summary>
<p>I grew up in lebanon. I lived at barelias, it wasn't that fun but like yeah we ball.</p>
</details>
</section>
<footer>
<img src="https://www.intro-webdesign.com/images/newlogo.png" width="20%"> This page was created by hani & Colleen can Lent. To learn more about web design visit <a href="http://intro-webdesign.com/">Intro to web design</a>.”</img>
</footer>
</body>
</html>