-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.48 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
<!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>Document</title>
</head>
<body>
<details>
<summary>Show More</summary>
<p>
This is some additional content that will be revealed when the user
clicks on the "Show More" text.
</p>
</details>
<p>The <mark>quick brown fox</mark> jumps over the lazy dog.</p>
<meter value="80" min="0" max="100" low="30" high="70" optimum="80"></meter>
<p>
The word
<wbr /> pneumonoultramicroscopicsilicovolcano<wbr />coniosis<wbr /> is a
lung disease caused by the inhalation of very fine silica dust found in
volcanoes and quarries.
</p>
<select>
<optgroup label="Asia">
<option value="ph">Philippines</option>
<option value="kr">South Korea</option>
<option value="jp">Japan</option>
</optgroup>
<optgroup label="Europe">
<option value="fr">France</option>
<option value="de">Germany</option>
<option value="it">Italy</option>
</optgroup>
<optgroup label="North America">
<option value="us">United States</option>
<option value="ca">Canada</option>
<option value="mx">Mexico</option>
</optgroup>
</select>
<script src="asyncAwait.js"></script>
</body>
</html>