-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
34 lines (28 loc) · 1.01 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=1280" />
<meta name="description" content="A procedural pixelart generator. Makes images of alien planets, inspired by No Man's Sky."/>
<title>Every planet procedural</title>
<link rel="stylesheet" href="style.css">
<!-- https://github.com/josephg/noisejs -->
<script src="perlin.js"></script>
<script src="seedrandom.min.js"></script>
<script src="helpers.js"></script>
<script src="planet.js"></script>
</head>
<body>
<div class="title">
<img src="title.png" alt="Every Planet Procedural">
</div>
<canvas id="myCanvas" class="pixelated" width="640" height="360"></canvas>
<div class="controls">
<a href="" id="permalink">permalink</a>
·
<a href="/proceduralart" id="discovernew">discover new planet</a>
</div>
<script src="script.js"></script>
</body>
</html>