-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
19 lines (19 loc) · 803 Bytes
/
Copy pathgame.html
File metadata and controls
19 lines (19 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>りだよの早押しクイズ</title>
</head>
<body>
<div style="text-align: center;">
<h2 id="question_big">問題</h2>
<p id="question">文</p>
<h1 id="marubatsu"> </h1>
<button style="padding: 15px 30px; font-size: 18px;" type="button" id="btn_opt1">選択肢1</button>
<button style="padding: 15px 30px; font-size: 18px;" type="button" id="btn_opt2">選択肢2</button>
<button style="padding: 15px 30px; font-size: 18px;" type="button" id="btn_opt3">選択肢3</button>
<button style="padding: 15px 30px; font-size: 18px;" type="button" id="btn_opt4">選択肢4</button>
<script src="js/game.js"></script>
</div>
</body>
</html>