-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
50 lines (50 loc) · 1.28 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
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="maximum-scale=2.0,width=device-width,initial-scale=1.0,user-scalable=yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="robots" content="all">
<meta name="author" content="">
<meta name="keywords" content="">
<link href='https://fonts.googleapis.com/css?family=Cantarell' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Sacramento' rel='stylesheet' type='text/css'>
<link rel="icon" type="" href="favicon.ico">
<script src="https://code.createjs.com/1.0.0/createjs.min.js"></script>
<script src="Main.js"></script>
<style>
HTML{
height:100%;
width:100%;
background-color:#ffffff;
}
BODY{
overflow:hidden;
margin:0px 0px;
}
HEADER{
overflow:hidden;
margin:0px 0px;
background-color:#bbbbbb;
height:0%;
width:100%;
}
FOOTER{
overflow:hidden;
margin:0px 0px;
background-color:#aaaaaa;
height:0%;
width:100%;
}
DIV{
text-align:center;
background-color: #ffffff;
}
</style>
</head>
<body onload="init()">
<div><canvas id="mycanvas" width="600px" height="600px" style="width:300px;height:300px;"></canvas><div>
</body>
</html>