-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
81 lines (73 loc) · 1.72 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
<!DOCTYPE html>
<html lang="ja">
<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>Static Basics</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header></header>
<section>
<h1>h1見出し</h1>
<h2>h2見出し</h2>
<h3>h3見出し</h3>
<h4>h4見出し</h4>
<h5>h5見出し</h5>
<h6>h6見出し</h6>
<p>段落要素</p>
<ul>
<li>リスト要素</li>
<li>リスト要素</li>
<li>リスト要素</li>
</ul>
<a href="/">ハイパーリンク要素</a>
<span>span要素</span>
<dl>
<dd>データ要素</dd>
<dt>データ要素</dt>
</dl>
<dl>
<dd>データ要素</dd>
<dt>データ要素</dt>
</dl>
<dl>
<dd>データ要素</dd>
<dt>データ要素</dt>
</dl>
<img src="" alt="">
<table>
<tr>
<th>テーブル要素</th>
<td>テーブル要素</td>
</tr>
</table>
<iframe src="/" frameborder="0"></iframe>
<form action="">
<fieldset>
<legend></legend>
<p>
<input type="text">
<label for=""></label>
</p>
<p>
<textarea name="" id="" cols="30" rows="10"></textarea>
<label for=""></label>
</p>
<p>
<select name="" id=""></select>
<option value=""></option>
</p>
<p>
<button>ボタン要素</button>
</p>
</fieldset>
</form>
<code>コード要素</code>
</section>
<aside>aside要素</aside>
<footer>フッター要素</footer>
<script src="js/main.js"></script>
</body>
</html>