-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
35 lines (28 loc) · 930 Bytes
/
index.php
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>2 Player Pong</title>
<link rel = "stylesheet" type = "text/css" href = "css/style.css"/>
<link href="https://fonts.googleapis.com/css?family=Contrail+One" rel="stylesheet">
<script type="text/javascript" src="js/jquery-1.11.1.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<div class = "gameframe">
<h1>Red: <span id = "red-score">0</span></h1>
<h1>Blue: <span id = "green-score">0</span></h1>
<div class = "player1-btns">
<span class = "btn">1</span>
<span class = "btn">3</span>
</div>
<div class = "player2-btns">
<span class = "btn">Q</span>
<span class = "btn">E</span>
</div>
<canvas id="game"></canvas>
</div>
<script src="js/index.js"></script>
</body>
</html>