-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 733 Bytes
/
index.html
File metadata and controls
44 lines (40 loc) · 733 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Javascript racer</title>
<link rel="stylesheet" href="racer.css">
<script src='https://code.jquery.com/jquery-2.1.4.js'></script>
<script src='./racer.js'></script>
</head>
<body>
<table>
<tr class='player1'>
<td></td>
<td></td>
<td class='active'></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class='player2'>
<td class='active'></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>