-
Notifications
You must be signed in to change notification settings - Fork 0
/
mindquiz.html
49 lines (33 loc) · 1.33 KB
/
mindquiz.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>Carousel Template for Bootstrap</title>
<link rel="stylesheet" href="assets/css/mindquiz/style.css">
</head>
<body>
<main role="main">
<div class="container marketing">
<!-- START THE FEATURETTES -->
<hr class="featurette-divider">
<h1>你今年的愛情是什麼滋味?</h1>
<div>
<h2 id="question"></h2>
<div id="options"></div>
</div>
<input id="startButton" type="button" value="開始作答">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- /END THE FEATURETTES -->
</div><!-- /.container -->
</main>
<script src="assets/js/vendor/popper.min.js"></script>
<!-- Just to make our placeholder images work. Don't actually copy the next line! -->
<script src="assets/js/vendor/holder.min.js"></script>
<script src="assets/js/mindquiz/mindquiz.js" ></script>
<script src="assets/js/mindquiz/data.js" async defer></script>
</body>
</html>