-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (33 loc) · 742 Bytes
/
Copy pathindex.html
File metadata and controls
44 lines (33 loc) · 742 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 lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Pong</title>
<link rel="stylesheet" href="styles.css" type="text/css">
<script defer src="script.js"></script>
</head>
<body>
<h1>PONG</h1>
<h2>by Qui and Cody</h2>
<h3 class='space'>(Press space to start)</h3>
<h3 class='r'>(Press R to reset)</h3>
<h3 class='item'>(Yellow block is a random item)</h3>
<section>
<p>0</p>
<p class="player2">0</p>
<div class="line">
</div>
<div id="ball">
</div>
<div id="paddle2">
<div class='white'>
</div>
</div>
<div id="paddle1">
<div class='white'>
</div>
</div>
</section>
<div class="button"> Reset </div>
</body>
</html>