forked from COPS-CSOC-2022/CSOC22-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhard.html
42 lines (41 loc) · 1.62 KB
/
hard.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
<!DOCTYPE html>
<html>
<head>
<title>HANGMAN 2</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="hard.css">
</head>
<body>
<div class="score">SCORE <span id="score">0</span></div>
<div id="countdown"></div>
<div class="word">
<span id="one" class="letter">_</span>
<span id="two" class="letter">_</span>
<span id="three" class="letter">_</span>
<span id="four" class="letter">_</span>
<span id="five" class="letter">_</span>
<span id="six" class="letter">_</span>
<span id="seven" class="letter">_</span>
</div>
<!-- <div>
<span class="underline">_</span>
<span class="underline">_</span>
<span class="underline">_</span>
<span class="underline">_</span>
<span class="underline">_</span>
<span class="underline">_</span>
<span class="underline">_</span>
</div> -->
<div id="help"></div>
<div id="chances">Chances Left: <span id="life">3</span></div>
<br>
<div id="aplhabets_place">
</div>
<button id="hint" onclick="hint()">HINT</button>
<button id="quit" onclick="quit()">QUIT</button>
<div id="hangmanpic">
<img src="./imagehard/1.png" id="amit">
</div>
<script src="hard.js"></script>
</body>
</html>