-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 1.33 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>
<title>SHADER SHADER FRIDAY</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1" >
<meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui, initial-scale=1">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="robots" content="NOODP">
<meta property="description" content="You have been waiting all week for SHADER FRIDAY." />
<link rel="icon" href="../images/favicon.png">
<style>
html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
width: 100%;
height: 100%;
overflow: hidden;
margin: 0;
padding: 0;
}
#shade {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: pink;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-40344111-29"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-40344111-29');
</script>
</head>
<body>
<canvas id="shade" width="800" height="600"></canvas>
<script src="main.js"></script>
</body>
</html>