-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (52 loc) · 1.34 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
51
52
53
54
55
56
<!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/createjs-2013.12.12.min.js"></script>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="Main.js"></script>
<style>
HTML{
height:100%;
width:100%;
background-color:#000000;
}
BODY{
overflow:hidden;
margin:0px 0px;
height:100%;
width:100%;
}
HEADER{
overflow:hidden;
margin:0px 0px;
background-color:#000000;
height:0%;
width:100%;
}
FOOTER{
overflow:hidden;
margin:0px 0px;
background-color:#000000;
height:0%;
width:100%;
}
DIV{
text-align:center;
}
</style>
</head>
<body onload="init()">
<div><canvas id="mycanvas" width="640px" height="1200px" style="width:320px;height:600px;"></canvas></div>
</body>
</html>