-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.04 KB
/
index.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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pong</title>
<script src="js/lib/p5.min.js" type="text/javascript"></script>
<script src="js/lib/p5.dom.js" type="text/javascript"></script>
<script src="js/game.js" type="text/javascript"></script>
<script src="js/pong.js" type="text/javascript"></script>
<script src="js/field.js" type="text/javascript"></script>
<script src="js/player.js" type="text/javascript"></script>
<script src="js/paddle.js" type="text/javascript"></script>
<script src="js/ball.js" type="text/javascript"></script>
<style type="text/css">
body {
font-family: monospace;
}
.title {
width: 800px;
text-align:center;
font-size: 120%;
font-weight: bold;
margin: 20px 0;
}
.instructions {
display: flex;
justify-content: space-around;
width: 780px;
padding: 10px;
}
.instructions p {
padding: 0;
margin: 0;
}
.instructions ul li {
list-style-type: none;
}
.instructions ul {
padding-left: 0;
}
</style>
<body>
</body>
</html>