-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 941 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>Javascript Practice</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1>画像クイズ</h1>
<input id="set_quiz" type="button" value="出題" />
<h2 id="question"></h2>
<div class="items">
<div class="item">
<p>1.</p>
<img id="img1" />
</div>
<div class="item">
<p>2.</p>
<img id="img2" />
</div>
<div class="item">
<p>3.</p>
<img id="img3" />
</div>
<div class="item">
<p>4.</p>
<img id="img4" />
</div>
<div class="item">
<p>5.</p>
<img id="img5" />
</div>
<div class="item">
<p>6.</p>
<img id="img6" />
</div>
</div>
</body>
</html>
<script src="js/index.js"></script>