-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
28 lines (25 loc) · 1.23 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
<!DOCTYPE html>
<!--<html manifest="/.cache.manifest">-->
<html>
<head>
<title>Gogh</title>
<link href='http://fonts.googleapis.com/css?family=Cedarville+Cursive' rel='stylesheet' type='text/css'>
<link rel='stylesheet' type='text/css' href='css/base.css' />
<script type='text/javascript' src='js/lib/jquery-1.7.1.min.js'></script>
<script type='text/javascript' src='js/lib/color.js'></script>
<meta name='viewport' content='width=device-width, initial-scale=1.0, user-scalable=no'>
</head>
<body>
<h1>Gogh</h1>
<canvas width=800 height=600 id='canvas'></canvas>
<img width=0 height=0 id='canvas-img'></img>
<script type='text/javascript' src='js/utils.js'></script>
<script type='text/javascript' src='js/sky.js'></script>
<script type='text/javascript' src='js/ground.js'></script>
<script type='text/javascript' src='js/tree.js'></script>
<script type='text/javascript' src='js/mountain.js'></script>
<script type='text/javascript' src='js/gogh.js'></script>
<a id="code" href="http://github.com/ngokevin/gogh">Source Code</a>
<a id="site" href="http://ngokevin.com">By Kevin Ngo</a>
</body>
</html>