-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.html
34 lines (33 loc) · 834 Bytes
/
test.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
<!DOCTYPE html>
<html>
<head>
<title>Pong Tests</title>
<meta charset="utf-8" />
</head>
<body>
<table>
<caption>Scores</caption>
<thead>
<tr>
<th>Player 1</th>
<th>Player 2</th>
</tr>
</thead>
<tbody>
<tr>
<td id="score_player1"></td>
<td id="score_player2"></td>
</tr>
</tbody>
</table>
<canvas id="pong" width="800" height="600">
<p>
Upgrade your browser!
</p>
</canvas>
<script type="text/javascript" charset="utf-8" src="http://yui.yahooapis.com/3.2.0/build/yui/yui-min.js"></script>
<script type="text/javascript" src="arnie.js"></script>
<script type="text/javascript" src="pong.js"></script>
<script type="text/javascript" src="test.js"></script>
</body>
</html>