-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (74 loc) · 3.53 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kusane Mini Hunt</title>
<link href="https://bootswatch.com/4/lux/bootstrap.min.css" rel="stylesheet" />
</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>
</div>
</nav>
<div class="container ">
<div class="jumbotron ">
<h1>Kusane Hexaku's Mini Puzzlehunt</h1>
<p class="lead text-primary ">An insight into a world of intellectually masochistic fun.</p>
</div>
<div class="row ">
<div class="col-md-4 ">
<h2>WHAT IS THIS?</h2>
<p>
A mini puzzlehunt created by Kusane Hexaku. </p>
<p>
If you're not familiar with what a Puzzlehunt is, check out the <a href="howtoplay.html">How To Play</a> page.
</p>
</div>
<div class="col-md-4">
<h2>WHY IS THIS?</h2>
<p>
Back in 2020, in a CS class, I got an assignment that literally said, "make a website about anything".
</p>
<p>
Most people went with the generic "My favourite sport team" or "Video games" theme, the girls went full BTS fanpage, and I just want an excuse to write puzzles.
<p>
The puzzles are available <a href="puzzles.html">here</a>.
</p>
</p>
</div>
<div class="col-md-4">
<h2>WHO IS THIS?</h2>
<p>I'm Kusane Hexaku. I'm just a bloke who really like puzzles. I enjoy long walks down the corridor of my home, and for my 2021 April Fool's Day joke, I made an 18x28 crossword. That should give enough insights to what kind of person I am already.</p>
<p>There's really not much to say about myself, but there is an <a href="about.html">About</a> page anyway.</p>
</div>
</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>