-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.08 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="styles.css" rel="stylesheet">
<script src="script.js" async></script>
<title>Set-Game</title>
</head>
<body>
<h1 class="page-title">Set Game</h1>
<div class="overlay-text visible">
Click to Start
</div>
<div id="game-over-text" class="overlay-text">
Game Over
<span class="overlay-text-small">Click to Restart</span>
</div>
<div id="victory-text" class="overlay-text">
Victory
<span class="overlay-text-small">Click to Restart</span>
</div>
<div class="game-container">
<div class="game-info-container">
<div class="pile l"></div>
<div class="pile r inuse">
<img src="Assets/logo.png" alt="Logo">
</div>
<div class="game-info">
Time <span id="time-remaining">100</span>
</div>
<div class="game-info a">
Sets <span id="sets">0</span>
</div>
<div class="game-info c">
Remaining Cards <span id="pile-left"></span>
</div>
</div>
</div>
</body>
</html>