-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
37 lines (31 loc) · 1.02 KB
/
quiz.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
<html>
<head>
<title>boolean</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/quiz.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="config.js"></script>
<script src="js/util.js"></script>
<script src="js/quiz.js"></script>
</head>
<body>
<header>
<a id="logo" href=".." target="_blank">
<img src="favicon.ico">
<span>boolean</span>
</a>
<span id="header-title"></span>
<a id="gh-link" href="https://github.com/Fylipp/boolean" target="_blank">
<img id="gh-mark" src="img/gh-mark.png">
</a>
</header>
<main>
<p id="statement"></p>
<button id="btn-false" class="false">False</button>
<button id="btn-true" class="true">True</button>
</main>
</body>
</html>