-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (63 loc) · 4.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hangman</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<header>
<h1>Häng Himon</h1>
</header>
<main>
<article>
<h2>Välkommen till spelet där du ska Hänga Himon.</h2>
<img id="hangman" src="images/h0.png" alt="hangman">
</article>
<section id="letterBoxes" class="flex-container">
<!-- This is where the matched letters should appear, these should match the number of -->
<ul id="letterBoxesUl">
</section>
<p id="time"><span id="seconds">00</span><span id="semi">:</span><span id="tens">00</span></p>
<button class="startbtn btn--stripe" type="button" id="startGameBtn">Starta spelet</button>
<button class="restbtn btn--stripe" type="button" id="restartGameBtn">Restart</button>
<section id="gameBoard">
<ul id="letterButtons">
<li><button class="btn btn--stripe" type="button" disabled value="A">A</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="B">B</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="C">C</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="D">D</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="E">E</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="F">F</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="G">G</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="H">H</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="I">I</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="J">J</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="K">K</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="L">L</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="M">M</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="N">N</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="O">O</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="P">P</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="Q">Q</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="R">R</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="S">S</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="T">T</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="U">U</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="V">V</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="W">W</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="X">X</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="Y">Y</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="Z">Z</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="Å">Å</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="Ä">Ä</button></li>
<li><button class="btn btn--stripe" type="button" disabled value="Ö">Ö</button></li>
</ul>
</section>
</main>
<footer>
Chas Academy - Hangman
</footer>
</body>
</html>