-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (44 loc) · 951 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>css-flat</title>
<link href="css-flat.css" rel="stylesheet" type="text/css" />
</head>
<body>
<main>main</main>
<h1>h1</h1>
<h1>h2</h1>
<h1>h3</h1>
<h1>h4</h1>
<h1>h5</h1>
<h1>h6</h1>
<a href="/">link</a>
<b>b</b>
<strong>strong</strong>
<pre>pre pre</pre>
<code>code</code>
<kbd>kbd</kbd>
<samp>samp</samp>
<small>small</small>
<sub>sub</sub>
<sup>sup</sup>
<hr>
<details>
<summary>summary</summary>
details
</details>
<img src="https://picsum.photos/id/1/200/100" alt="img">
<button>button</button>
<input type="text">
<optgroup label="optgroup">
<option value="option 1">option 1</option>
<option value="option 2">option 2</option>
</optgroup>
<select>
<option value=" ">select</option>
<option value="option 1">option 1</option>
<option value="option 2">option 2</option>
</select>
<textarea>textarea textarea textarea textarea textarea textarea</textarea>
</body>
</html>