-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
46 lines (45 loc) · 984 Bytes
/
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
44
45
46
<html>
<head>
<title></title>
<style>
#myCanvas
{
height: 50%;
width: 50%;
border: 1px solid white;
}
*
{
margin: 0;
padding: 0;
}
/* to remove the top and left whitespace */
#main
{
text-align: center;
}
html, body
{
width: 100%;
height: 100%;
background-color:Black;
}
/* just to be sure these are full screen*/
canvas
{
display: block;
}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="pm.js"></script>
</head>
<body>
<header id="head"> PONG MONG </header>
<section id="main">
<center>
<canvas id="myCanvas">
</canvas>
</center>
</section>
</body>
</html>