-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
59 lines (45 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memmory Game</title>
<link rel = "stylesheet" href = "./style.css" />
</head>
<body>
<div class="titleDiv">
M      E      M      O      R      Y
</div>
<div class="container">
<div class="sideMenu">
<button id="resetBtn" class="btn">RESET GAME</button>
<br><br>
<button id="Choose Avatar" class="btn">
<input type="file" id="avatar1input" style="display:none">
<a href="#" id="anchor1">Choose Avatar</a>
</button>
<img id="p1Img" src="./imgs//player.png" width="30px" height="30px" />
<div id="p1Count" class="player">
<div>Player One Score</div>
<br>0
</div>
<button id="Choose Avatar" class="btn">
<input type="file" id="avatar2input" style="display:none">
<a href="#" id="anchor2">Choose Avatar</a>
</button>
<img id="p2Img" src="./imgs//player.png" width="30px" height="30px" />
<div id="p2Count" class="player">
<div>Player Two Score</div>
<br>0
</div>
<br><br>
<button id="endBtn" class="btn">END GAME</button>
</div>
<div id="mainDiv" class="mainDivClass"></div>
</div>
<div style="display: none;" id="overlayDiv" class="overlay">
<img id="overlayImg" width="600px" height="600px" />
</div>
</body>
<script src="./logic.js"></script>
</html>