-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask1.HTML
More file actions
50 lines (50 loc) · 1 KB
/
task1.HTML
File metadata and controls
50 lines (50 loc) · 1 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
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<link href=task1.css rel=stylesheet>
<title>Game</title>
</head>
<body>
<p class=delta>Click <strong>the numbers</strong> as quickly as you can!Click number 1 to start the game!</p>
<button >New Game</button>
<div class="container">
<div id="display">
00:00:00
</div>
<divclass="buttons">
<button id="startStop" onclick="startStop()">Stop</button>
</div>
</div>
<table id=delta2>
<tr>
<td id=e>11</td>
<td id=five>5</td>
<td id=sixteen>16</td>
<td id=two>2</td>
<td id=ten>10</td>
</tr>
<tr >
<td id=thirteen>13</td>
<td id=eight>8</td>
<td id=eighteen>18</td>
<td id=four>4</td>
<td id=six>6</td>
</tr>
<tr>
<td id=seven>7</td>
<td id=twelve>12</td>
<td id=nineteen>19</td>
<td id=one>1</td>
<td id=nine>9</td>
</tr>
<tr>
<td id=t>20</td>
<td id=fifteen>15</td>
<td id=fourteen>14</td>
<td id=seventeen>17</td>
<td id=three>3</td>
</tr>
<p id=bold><bold>Best Time:00:00:00</bold></p>
<script src=task1.js></script>
</body>
</html>