-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmajora.html
77 lines (42 loc) · 1.67 KB
/
majora.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Trivia</title>
<script type='text/javascript' src='https://code.jquery.com/jquery-2.2.0.min.js'></script>
<script type = "text/javascript" src = "assets/javascript/majora.js"></script>
<script type = "text/javascript" src = "assets/javascript/mainjs.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/css/grobal.css">
<link rel="stylesheet" type="text/css" href="assets/css/mask.css">
</head>
<body>
<div class="jumbotron text-center">
<h2>Trivia of Zelda: Majora's Mark</h2>
<button class="btn btn-primary reset pull-left btn-lg">Reset</button>
<a class="choices btn btn-primary btn-lg pull-right" href="index.html" role="button">Main Menu</a>
</div>
<div class="row">
<div class="col-md-6 main_guess">
<div class="panel panel-default text-center">
<div class="panel-heading text-center">
<h3 class="panel-title text-center question info-guess">Trivia</h3>
</div>
<div class="panel-body guess text-center">
</div>
</div>
</div>
<div class="col-md-5 info">
<div class="panel panel-default text-center">
<div class="panel-heading text-center">
<h3 class="panel-title text-center info-title">Click "Start" to beginning</h3>
</div>
<div class="panel-body text-center info_panel">
<button class="btn btn-primary btn-lg start_btn">Start</button>
</div>
</div>
</div>
</div>
</body>
</html>