-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (77 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./plugins/jquery.color.min.js"></script>
<script src="./script.js"></script>
<title>CTIS 255 Term Project</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="initTimerWrapper">
<p id="initTimer">3</p>
</div>
<div id="main">
<div id="info">
<div>
<p>HI-SCORE</p>
<p id="highScore"></p>
</div>
<div>
<p>SCORE</p>
<p id="score">0</p>
</div>
<div>
<p>TIME</p>
<p id="counter"></p>
</div>
</div>
<div id="table-wrapper">
<table id="tile">
<tr>
<td id="item00"></td>
<td id="item01"></td>
<td id="item02"></td>
<td id="item03"></td>
</tr>
<tr>
<td id="item10"></td>
<td id="item11"></td>
<td id="item12"></td>
<td id="item13"></td>
</tr>
<tr>
<td id="item20"></td>
<td id="item21"></td>
<td id="item22"></td>
<td id="item23"></td>
</tr>
<tr>
<td id="item30"></td>
<td id="item31"></td>
<td id="item32"></td>
<td id="item33"></td>
</tr>
</table>
</div>
<div id="pointBarWrapper">
<div id="pointBar">
<div id="filledPart"></div>
</div>
</div>
<div id="popup">
<p>x</p>
</div>
<div id="playAgain">
<p>Refresh the page or F5 to play again</p>
</div>
</div>
<script src="./plugins/jquery.confetti.js"></script>
</body>
</html>