-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.49 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>The Kluns Climber</title>
<link
href="https://fonts.googleapis.com/css?family=Righteous&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script src="main.js" type="module"></script>
</head>
<body>
<main>
<div id="title">
<h1>The Kluns climber</h1>
<p>
Help Tristan to climb to the top by winning duels of Sten-sax-påse
("Klunsa") against the dreaded foes.
</p>
<p>
Use keys S, X and P to choose (S)ten, sa(X) eller (P)åse. Or if on
mobile, use buttons below.
</p>
<p>
Every duel is won by getting first to 5 wins. Win to advance, lose to
fall back.
</p>
<p>Game over when health is 0.</p>
</div>
<section id="weapon-buttons" class="mobileonly">
<button id="rock">S</button>
<button id="scissors">X</button>
<button id="paper">P</button>
</section>
<div id="playArea"></div>
<div id="info">
<h1>Info</h1>
<p></p>
<button class="noShow" id="start">Start new game</button>
</div>
</main>
<footer>
This site uses avatars from
<a href="https://avatars.dicebear.com/">avatars.dicebear.com</a>
</footer>
</body>
</html>