-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBOJqa.html
63 lines (39 loc) · 1.49 KB
/
BOJqa.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>Battle of Japan/qa</title>
<link rel="stylesheet" href="BOJqa.css" type="text/css">
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="jquery-ui-1.12.1.custom/jquery-ui.min.css">
<script src="jquery-ui-1.12.1.custom/external/jquery/jquery.js"></script>
<script src="jquery-ui-1.12.1.custom/jquery-ui.min.js"></script>
</head>
<body>
<div id="fightboard">
<div id="userandpic">
<div id="username2"></div>
<img id="belowpic">
</div>
<p id="vs">VS</p>
<div id="prefandpic">
<div id="prefname"></div>
<img id="prefmon">
</div>
</div>
<div id="countdown"></div>
<div id="panel">
<div id="question">What is the tallest mountain in Yamagata?</div>
<div id="answers">
<div id="a1" class="a h">Mount Fuji</div>
<div id="a2" class="a h">Mount Yamagata</div>
<div id="a3" class="a h">Mount Chester</div>
<div id="a4" class="a h">There are no mountains in Yamagata</div>
</div>
</div>
<!-- scripts -->
<script type="text/javascript" src="qalist.json"></script>
<script src="BOJqa.js"></script>
</body>
</html>