-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
71 lines (71 loc) · 3.21 KB
/
game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="ie=edge" http-equiv="X-UA-Compatible">
<title>Deadman</title>
<link href="main.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<center>
<!-- special font -->
<a href="https://fontmeme.com/fonts/rogue-hero-font/"><img alt="rogue-hero-font" border="0" src="https://fontmeme.com/permalink/180524/78cf9725e559fee6efa32c917b3d35a6.png"></a>
</center><!--
diffrent body parts that will be deleted as wrong questions are answered -->
<div id="ansArray">
</div>
<div class="alphabet">
<div class="alphaBegin">
<button class="button" id= "A" value="A">A</input>
<button class="button" id= "B" value="B">B</input>
<button class="button" id= "C" value="C">C</input>
<button class="button" id= "D" value="D">D</input>
<button class="button" id= "E" value="E">E</input>
<button class="button" id= "F" value="F">F</input>
<button class="button" id= "G" value="G">G</input>
<button class="button" id= "H" value="H">H</input>
<button class="button" id= "I" value="I">I</input>
<button class="button" id= "J" value="J">J</input>
<button class="button" id= "K" value="K">K</input>
<button class="button" id= "L" value="L">L</input>
<button class="button" id= "M" value="M">M</input>
</div>
<div class="alphaLast">
<button class="button" id= "N" value="N">N</button>
<button class="button" id= "O" value="O">O</button>
<button class="button" id= "P" value="P">P</button>
<button class="button" id= "Q" value="Q">Q</button>
<button class="button" id= "R" value="R">R</button>
<button class="button" id= "S" value="S">S</button>
<button class="button" id= "T" value="T">T</button>
<button class="button" id= "U" value="U">U</button>
<button class="button" id= "V" value="V">V</button>
<button class="button" id= "W" value="W">W</button>
<button class="button" id= "X" value="X">X</button>
<button class="button" id= "Y" value="Y">Y</button>
<button class="button" id= "Z" value="Z">Z</button>
</div><br>
<div class="dead">
<img class="deadpool" src="images/deadpool.png"> <!-- <img class="deadpool2" src="images/d1.png">
<img class="deadpool3" src="images/d2.png">
<img class="deadpool4" src="images/d3.png">
<img class="deadpool5" src="images/d4.png">
<img class="deadpool6" src="images/d5.png"> -->
</div>
<div class="wrongGuess">
<h1>Wrong Guesses:</h1>
</div><br>
<p class="triesLeft">
<h1>This Many Tries Left Buddy:</h1>
</p><br>
</div>
<button id = "reset" onclick="myFunction(reset)">RESET GAME</button>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>