-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·95 lines (78 loc) · 2.34 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML 102</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header>
<h1>HTML 102</h1>
<img src="assets/images/bandit.png" alt="a simple dove logo">
<nav>
<ul>
<li><span>Home</span></li>
<li><a target="_blank" href="https://developer.mozilla.org/">Mdn</a></li>
<li><a target="_blank" href="https://developer.mozilla.org/en-US/docs/Glossary/HTML">Html</a></li>
<li><a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTML">Docs</a></li>
</ul>
</nav>
</header>
<main>
<article>
<section>
<!--ul>li*4-->
<h2>An unordered list</h2>
<ul>
<li>Home</li>
<li>MDN</li>
<li>HTML</li>
<li>DOCS</li>
</ul>
<!--ol>li*3-->
<h2>An ordered list</h2>
<ol>
<li>Uno</li>
<li>Due</li>
<li>Tre</li>
</ol>
<!--dl>dt*2>dd*1-->
<h2>A description list</h2>
<dl>
<dt>Pasta</dt>
<dd>Best food in the world</dd>
<dt>Pizza</dt>
<dd>My favourite food</dd>
</dl>
<h2>Table</h2>
<table class="table">
<thead>
<tr>
<td>City</td>
<td>Country</td>
<td>Planet</td>
</tr>
</thead>
<bo
</table>
</section>
</article>
<aside>
<h2>Placeholder photos</h2>
<a href="#"><img src="https://via.placeholder.com/150x150" alt=""></a>
<a href="#"><img src="https://via.placeholder.com/150x150" alt=""></a>
<a href="#"><img src="https://via.placeholder.com/150x150" alt=""></a>
<a href="#"><img src="https://via.placeholder.com/150x150" alt=""></a>
</aside>
</main>
<footer>
<p>This fake website example is CC0 — any part of this code may be reused in any way you wish. Original example
written by Chris Mills, 2016.</p>
<p><a href="https://game-icons.net/delapouite/originals/bandit.html">Bandit icon</a> by Lorc.</p>
</footer>
</body>
</html>