-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·66 lines (51 loc) · 1.35 KB
/
index.html
File metadata and controls
executable file
·66 lines (51 loc) · 1.35 KB
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
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=1024">
<style>
html, body{
height:100%;
width:100%;
margin: 0;
padding: 0;
overflow: hidden;
background: #333333;
}
*{
margin: 0;
padding: 0;
}
#about{
position: absolute;
top:0;
right:0;
z-index: 2;
}
#about a{
color:black !important;
background: white;
padding:3px 5px;
text-decoration: none;
margin-right: 30px;
font-family: arial;
font-size: 14px;
}
canvas{
position: absolute;
top:0px;
left:0px;
}
</style>
</head>
<body >
<canvas id="gradientCanvas" width="500" height="500"></canvas>
<canvas id="gridCanvas" width="500" height="500"></canvas>
<div id="about"><a href="http://fatlinesofcode.philipandrews.org/2011/08/12/new-html5-portfolio/">About</a></div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="App.js"></script>
</body>
</html>