This repository was archived by the owner on Feb 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtabs-example.html
63 lines (59 loc) · 1.98 KB
/
tabs-example.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inchoo FCC - TABs example</title>
</head>
<body>
<section>
<h2>Inchoo</h2>
<form>
<fieldset>
<legend>Tab Testing</legend>
<ul>
<li>
<label for="name">Fill in your name:</label>
<input type="text" id="name" name="name">
</li>
<li>
<label for="mood">Choose your mood:</label>
<select id="mood" name="mood">
<option>Happy</option>
<option>Sad</option>
</select>
</li>
</ul>
</fieldset>
</form>
</section>
<section>
<h2>Unorder list testing</h2>
<ul id="mb1">
<li id="mb1_menu1"> Font
<ul id="fontMenu" title="Font">
<li id="sans-serif">Sans-serif</li>
<li id="serif"><a href="#test">Test A</a></li>
<li id="monospace">Monospace</li>
<li id="fantasy">Fantasy</li>
</ul>
</li>
<li id="mb1_menu2"> Style
<ul id="styleMenu" title="Style">
<li id="italic">Italics</li>
<li id="bold">Bold</li>
<li id="underline">Underlined</li>
</ul>
</li>
<li id="mb1_menu3"> Justification
<ul tabindex="0" id="justificationMenu" title="Justification">
<li tabindex="1" id="left">Left</li>
<li tabindex="0" id="center">Centered</li>
<li tabindex="0" id="right">Right</li>
<li tabindex="2" id="justify">Justify</li>
</ul>
</li>
</ul>
</section>
</body>
</html>