-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (41 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="images/favicon.ico">
<title>Hangman</title>
<link rel="stylesheet" href="styles/my-styles.css">
<meta name="description" content="Game for the FAO aplication">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet">
</head>
<body>
<main>
<section>
<h1 id="headingMessage">Hangman</h1>
<div class="grid-container">
<div class="flex-container-secretWord"></div>
<div class="hangmanFrame"> <img id="hangmanPic"></div>
<div class="grid-container-keyboard">
<div class="flex-container-keyboard-line">
<p class="iskey">Q</p><p class="iskey">W</p><p class="iskey">E</p><p class="iskey">R</p><p class="iskey">T</p><p class="iskey">Y</p><p class="iskey">U</p><p class="iskey">I</p><p class="iskey">O</p><p class="iskey">P</p>
</div>
<div class="flex-container-keyboard-line ">
<p class="iskey">A</p><p class="iskey">S</p><p class="iskey">D</p><p class="iskey">F</p><p class="iskey">G</p><p class="iskey">H</p><p class="iskey">J</p><p class="iskey">K</p><p class="iskey">L</p>
</div>
<div class="flex-container-keyboard-line">
<p class="iskey">Z</p><p class="iskey">X</p><p class="iskey">C</p><p class="iskey">V</p><p class="iskey">B</p><p class="iskey">N</p><p class="iskey">M</p>
</div>
</div>
</div>
<div>
<h2 id="message">Press the keys on the screen to guess the secret word</h2>
</div>
</section>
</main>
<!--It is important to set right the order, otherwise the content of words wouldn't be accesible-->
<script src="scripts/words.js"></script>
<script src="scripts/my-script.js"></script>
</body>
</html>