-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (33 loc) · 1.38 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
<html>
<head>
<title>Parenting Jam</title>
<meta name="author" content="William Stallwood">
<meta name="description" content="Project">
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Dosis:800" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<!-- <script src="https://code.createjs.com/createjs-2015.11.26.min.js"></script> -->
<script src="js/createjs-2017.09.14.min.js"></script>
<script src="js/createjs-plus.js"></script>
<script src="js/components.js"></script>
<script src="js/setup.js"></script>
<script src="js/part.js"></script>
<script src="js/baby.js"></script>
<script src="js/hiscore.js"></script>
<script src="js/hair.js"></script>
<script src="js/babyBody.js"></script>
<script src="js/particle.js"></script>
<script src="js/trail.js"></script>
<script src="js/extended_container.js"></script>
<script src="js/main.js"></script>
</head>
<body onload="main();">
<div id="content">
<canvas id="canvas" width="320" height="568"></canvas>
</div>
<div id="footer">
<p>made for shits by <a href="http://twitter.com/willstall/">willstall</a> of <a href="http://www.cipherprime.com">cipherprime</a></p>
</div>
</body>
</html>