-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (147 loc) · 4.17 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML5 Example Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="HTML5 Example Page">
<link rel="stylesheet" href="/assets/css/stylesheet.css?v=1">
</head>
<body>
<header>
<h1>HTML5 Example Page</h1>
</header>
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Contact</a></li>
</ul>
</nav>
<article>
<h2>This is a headline</h2>
<p>
This paragraph is nested inside an article. It contains basic tags like <a href="#top">anchors</a>,
<strong>strong</strong>, <em>emphasis</em>, and <u>underline</u>.
It provides <del>deleted text</del> as well, which often gets replaced with <ins>inserted</ins> text.
</p>
<h3>This is subheadline for more content</h3>
<ul>
<li>Unordered lists have basic styles</li>
<li>They use the circle list style
<ul>
<li>Nested list item one</li>
<li>Nested list item two</li>
</ul>
</li>
<li>Just one more list item</li>
</ul>
<ol>
<li>Ordered lists also have basic styles</li>
<li>They use the decimal list style
<ul>
<li>Nested list item one</li>
<li>Nested list item two</li>
</ul>
</li>
<li>Last list item</li>
</ol>
</article>
<aside>
<h3>This is some advanced content</h3>
<figure>
<img data-src="/assets/images/image.png"
src="data:image/gif;base64,R0lGODlhAQABAIAAAMLCwgAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=="
width="360" height="120" alt="Description of the first image"/>
<figcaption>Caption for the first image</figcaption>
</figure>
<a href="#top">
<figure>
<img data-src="/assets/images/image2.png"
src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs="
width="360" height="80" alt="Description of the second image"/>
<figcaption>Caption for the second image</figcaption>
</figure>
</a>
<img alt="Description of a single image without a caption" src="/assets/images/image.webp"/>
<p>
<a class="button" href="#">Anchor button</a><br>
<button>Button element</button>
</p>
<blockquote>
“Infamous quote”
<footer><cite>- Attribution</cite></footer>
</blockquote>
<hr>
<details>
<summary>Expandable title</summary>
<p>Revealed content</p>
</details>
<details>
<summary>Another expandable title</summary>
<p>More revealed content</p>
</details>
<h4>This is a code example</h4>
<pre><code>.some-class {
background-color: red;
}</code></pre>
</aside>
<section>
<h2>This is another headline</h2>
<div class="some-class">
This is a boxed element.
</div>
<div class="some-class">
This is yet another boxed element.
</div>
<h3>This is a table</h3>
<table>
<thead>
<tr>
<th>Name</th>
<th>Quantity</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cheese fondue</td>
<td>1</td>
<td>EUR 23</td>
</tr>
<tr>
<td>Pizza</td>
<td>10</td>
<td>EUR 10.000,00</td>
</tr>
<tr>
<td>Waffles</td>
<td>1</td>
<td>EUR 14,30</td>
</tr>
</tbody>
</table>
<h3>And this is a form</h3>
<form>
<div class="row">
<label for="exampleSubject">Subject</label>
<input type="text" placeholder="Your subject" id="exampleSubject">
</div>
<div class="row">
<label for="exampleMessage">Message</label>
<textarea placeholder="Your message" id="exampleMessage"></textarea>
</div>
<div class="row">
<label>
<input type="checkbox" id="exampleConfirmation"><span>Confirmation</span>
</label>
</div>
<input type="submit" value="Submit">
</form>
</section>
<footer>
Made with <a href="https://html5example.com">html5example.com</a>
</footer>
<script src="/assets/js/scripts.js"></script>
</body>
</html>