-
Notifications
You must be signed in to change notification settings - Fork 0
/
puzzles.html
130 lines (117 loc) · 4.3 KB
/
puzzles.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Puzzles - Kusane Mini Hunt</title>
<link href="https://bootswatch.com/4/lux/bootstrap.min.css" rel="stylesheet" />
<script src="answerChecker.js"></script>
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<a class="navbar-brand" href="index.html" ) ">Kusane MiniHunt</a>
<button class="navbar-toggler " type="button " data-toggle="collapse " data-target="#navbarColor01 " aria-controls="navbarColor01 " aria-expanded="false " aria-label="Toggle navigation ">
<span class="navbar-toggler-icon "></span>
</button>
<div class="collapse navbar-collapse " id="navbarColor01 ">
<ul class="navbar-nav mr-auto ">
<li class="nav-item ">
<a class="nav-link " href="index.html ">
Home
<span class="sr-only ">(current)</span>
</a>
</li>
<li class="nav-item ">
<a class="nav-link " href="puzzles.html ">Puzzles</a>
</li>
<li class="nav-item ">
<a class="nav-link " href="howtoplay.html ">How To Play</a>
</li>
<li class="nav-item ">
<a class="nav-link " href="about.html ">About</a>
</li>
</ul>
</div>
</nav>
<div class="container ">
<script src="sweetalert2.all.min.js "></script>
<div class="jumbotron ">
<h1>Puzzles</h1>
<p class="lead text-primary ">Here are the puzzles featured in this minihunt.</p>
</div>
<div>
<table class="table table-hover ">
<thead>
<tr class="table-active text-primary ">
<th scope="col ">No.</th>
<th scope="col ">Puzzle Name</th>
<th scope="col "></th>
</tr>
</thead>
<tr>
<th scope="row ">1</th>
<td><a href="puzzles/readBetweenTheLines.html ">Read Between The Lines</a></td>
<td></td>
</tr>
<tr>
<th scope="row ">2</th>
<td><a href="puzzles/closeWords.html">Close Words</a></td>
<td></td>
</tr>
<tr>
<th scope="row ">3</th>
<td><a href="puzzles/standardCode.html ">Standard Code</a></td>
<td></td>
</tr>
<tr>
<th scope="row ">4</th>
<td><a href="puzzles/secondLink.html">Second Link</a></td>
<td></td>
</tr>
<tr>
<th scope="row ">5</th>
<td><a href="puzzles/alrightProceed.html">Alright, Proceed.</a></td>
<td></td>
</tr>
<tr>
<th scope="row ">6</th>
<td><a href="puzzles/flip.html">Flip</a></td>
<td></td>
</tr>
<tr>
<th scope="row ">7</th>
<td><a href="puzzles/derivatives.html">Derivatives</a></td>
<td></td>
</tr>
<tr>
<th scope="row ">8</th>
<td><a href="puzzles/encryptic.html">Encryptic</a></td>
<td></td>
</tr>
<tr>
<th scope="row ">9</th>
<td><a href="puzzles/elderPuzzles.html">Elder Puzzles</a></td>
<td></td>
</tr>
<tr>
<th scope="row ">10</th>
<td><a href="puzzles/forks.html">Forks</a></td>
<td></td>
</tr>
<tr>
<th scope="row ">META</th>
<td><a href="puzzles/elementaryMath.html ">Elementary Math</a></td>
<td></td>
</tr>
</table>
</div>
</div>
</body>
<div class="container body-content ">
<hr />
<footer>
<p>Kusane Hexaku, 2020-<script>document.write(new Date().getFullYear())</script>, there's no hint here.</p>
</footer>
</div>
</html>