-
Notifications
You must be signed in to change notification settings - Fork 698
/
project-page.html
57 lines (56 loc) · 1.91 KB
/
project-page.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
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Introduction to HTML5</title>
<meta name="description" content="Introduction to HTML5">
<meta name="author" content="salimt">
<style>
progress { width: 15%; padding: 3px; border: 0 none; background: #444; border-radius: 14px; }
progress::-moz-progress-bar { border-radius: 12px; background: orange; }
/* webkit */
@media screen and (-webkit-min-device-pixel-ratio:0) { progress { height: 15px; } }
progress::-webkit-progress-bar { background: transparent; }
progress::-webkit-progress-value { border-radius: 12px; background: orange; }
</style>
</head>
<body>
<header>
<h1>SALIMT</h1>
<nav>
<a href="https://www.google.com">One</a>
<a href="https://www.google.com">Two</a>
<a href="https://www.google.com">Three</a>
<a href="https://www.google.com">Four</a>
</nav>
</header>
<section id="favFoods">
<h2>Favourite Foods</h2>
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
<li>Fourth</li>
</ul>
</section>
<section id="achievements">
<h2>Achievements</h2>
<label>Progress in this course (100%) </label>
<progress value="100" max="100"> 100% </progress><br>
<label>Progress in the Specialization capstone (20%) </label>
<progress value="20" max="100"> 20% </progress><br>
<label>Progress in something (67%) </label>
<progress value="67" max="100"> 100% </progress><br>
</section>
<section id="about">
<h2>More About Me</h2>
<details>
<summary>My Childhood</summary>
<p>Project done for University of Michigan's HTML5 course.</p>
</details>
</section>
<footer>
<img src="http://www.intro-webdesign.com/images/newlogo.png"></img>This page was created by salimt & Colleen van Lent. To learn more about web design, visit <a href="https://www.intro-webdesign.com">Intro to Web Design</a>.
</footer>
</body>
</html>