-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (36 loc) · 834 Bytes
/
index.html
File metadata and controls
45 lines (36 loc) · 834 Bytes
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>label&input</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li><label for="01">01</label></li>
<li><label for="02">02</label></li>
<li><label for="03">03</label></li>
<li><label for="04">04</label></li>
</ul>
</nav>
<div class="content">
<input type="radio" name="menu" id="01" checked="checked">
<div>
<h1>01</h1>
</div>
<input type="radio" name="menu" id="02">
<div>
<h1>02</h1>
</div>
<input type="radio" name="menu" id="03">
<div>
<h1>03</h1>
</div>
<input type="radio" name="menu" id="04">
<div>
<h1>04</h1>
</div>
</div>
</body>
</html>