-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (91 loc) · 3.66 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Word-Guess-Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Faster+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link rel="icon" href="https://www.bitdegree.org/tutorials/wp-content/uploads/2018/08/what-is-a-web-developer.jpg" >
<link href="https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<!--Changing Image based on correct answers-->
<h2 id="message">Press Any Key To Guess The Word!</h2>
<h3 id="message2"></h3><hr>
<h3 id="message3"></h3><hr>
<div>
<img id="image" src="./assets/image/luck.gif" width="50%" height="200">
</div>
<!--Current Word Container-->
<div>
<h3 id="currentword"> _ _ _ _ _</h3>
</div>
<div id="scoreboard">
<!--Guesses left Container-->
<div class="menu">
<h3>GUESSES LEFT:
<span id="guesscpt"></span>
</h3>
</div>
<!--Wins counter Container-->
<div class="menu">
<h3>WINS_SCORE :
<span id="wincpt"></span>
</h3>
</div>
<!--Loss counter Container-->
<div class="menu">
<h3>LOSSES_SCORE :
<span id="lostcpt"></span>
</h3>
</div>
<!--Wrong guesses container-->
<div class="menu">
<h3>WRONG LETTERS LIST:
<span id="playerletterguesses"></span>
</h3>
</div>
</h3>
</div>
</div>
</div>
</div>
<!--AUDIO FILES-->
<div>
<!--responsive-->>
<audio id="resp">
<source src="./assets/audio/resp.mp3" type="audio/mp3">
</audio>
<!--software-->
<audio id="soft">
<source src="./assets/audio/soft.mp3" type="audio/mp3">
</audio>
<!--padding-->
<audio id="padd">
<source src="./assets/audio/padd.mp3" type="audio/mp3">
</audio>
<!--fullstack-->
<audio id="full">
<source src="./assets/audio/full.mp3" type="audio/mp3">
</audio>
<!--article-->
<audio id="arti">
<source src="./assets/audio/arti.mp3" type="audio/mp3">
</audio>
<!--container-->
<audio id="cont">
<source src="./assets/audio/cont.mp3" type="audio/mp3">
</audio>
<!--bootstarp-->
<audio id="boot">
<source src="./assets/audio/boot.mp3" type="audio/mp3">
</audio>
</div>
<script src="./assets/javascript/game.js"></script>
</body>
</html>