-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
25 lines (25 loc) · 923 Bytes
/
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
<html>
<head>
<title>Worms</title>
<link href="http://fonts.googleapis.com/css?family=Play:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section id="info">
<header>
<hgroup>
<h1>Worms</h1>
<h2>Inverse kinematics, Catmull-Rom Splines & Wander Behaviors</h2>
</hgroup>
<a href="https://github.com/soulwire/Worms/zipball/master">Download</a>
<a href="https://github.com/soulwire/Worms">View on Github</a>
</header>
</section>
<div id="container"></div>
<!-- Libraries -->
<script type="text/javascript" src="https://rawgithub.com/soulwire/sketch.js/master/js/sketch.min.js"></script>
<script type="text/javascript" src="https://rawgithub.com/dataarts/dat.gui/build/DAT.GUI.min.js"></script>
<!-- Script -->
<script type="text/javascript" src="js/worms.js"></script>
</body>
</html>