-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (46 loc) · 1.79 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coursera final project</title>
<link rel="icon" href="./logo.png">
</head>
<body>
<header>
<h1>Seyed Mohammad Mahdi Kiaei</h1>
<nav>
<a href="#">one</a> <a href="#">two</a> <a href="#">three</a> <a href="#">zero</a>
</nav>
</header>
<section>
<h2>Favorite Food</h2>
<ul>
<li>hamburger</li>
<li>pizza</li>
<li>moka</li>
<li>french fries</li>
</ul>
</section>
<section>
<h2>Achievements</h2>
<p>progress in this course (100%) <progress value="100" max="100">100%</progress></p>
<p>progress in the specialization capstone (20%) <progress value="20" max="100">20%</progress> </p>
<p>prograss in life goals (50%) <progress value="50" max="100">50%</progress> </p>
</section>
<section>
<details open>
<summary>My Childhood</summary>
<p>I grew up in Tehran,Iran. Iam polymer student at Islamic Azad University Science and Research Branch. I love programming and web development :)</p>
</details>
</section>
<footer>
<figure>
<a href="http://intro-webdesign.com/" target="_blank"><img src="./newlogo.png" alt="web design for everybody"></a>
</figure>
<p>This page created by Seyed Mohammad Mahdi Kiaei & Colleen Van Lent. To learn more about web design, visit <a href="http://intro-webdesign.com/" target="_blank">Intro to Web Design</a>.</p>
</footer>
</body>
</html>
<!-- Developed by Mohammad Kiaei -->