-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (60 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no" />
<link rel="icon" href="images/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Lobster&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Speed Repeat</title>
</head>
<body>
<table>
<tr>
<td>
<div class="title" id="title">Speed Repeat</div>
<div class="message" id="message"> Click on the center to start</div>
<div class="message" id="message2"> Your Score: 0</div>
<div class="message" id="message3"> Round: 0</div>
<table class="center">
<tr>
<td></td>
<td>
<div id="up" class="triangle-up"></div>
</td>
<td></td>
</tr>
<tr>
<td>
<div id="left" class="triangle-left"></div>
</div>
</td>
<td>
<div id="middle" class="circle" onclick="start()"></div>
</td>
<td>
<div id="right" class="triangle-right"> </div>
</td>
</tr>
<tr>
<td></td>
<td>
<div id="down" class="triangle-down"></div>
</td>
<td></td>
</tr>
</table>
</td>
<td>
<div class="score">
<table class="score2" id="myTable">
<caption>High Score:</caption>
<input id="highscore" placeholder="Enter Your Name Here" />
</table>
</div>
</td>
</tr>
</table>
<script src="script.js"></script>
</body>
</html>