-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Tiny Planets</title>
<link rel="icon" href="src/icon.png" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.min.js"
integrity="sha256-7/yoZS3548fXSRXqc/xYzjsmuW3sFKzuvOCHd06Pmps="
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css?family=Indie+Flower&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="src/style.css" />
</head>
<body>
<div class="polaroid container">
<div id="canvas"></div>
<p id="planetDescription"></p>
</div>
<footer>
<p id="credits">
© 2019 Tiny Planets. Antoine Mayerowitz - CC BY-NC-SA.
<a href="https://github.com/SuperMayo/tinyPlanets">See me on Github</a>
<a href='https://ko-fi.com/A0A1YJ1E'>or support me on Ko-fi</a>
</p>
</footer>
<script src="lib/p5.min.js"></script>
<script src="src/logic.js"></script>
<script src="src/planet.js"></script>
<script src="src/app.js"></script>
<script src="src/nameGen.js"></script>
</body>
</html>