-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (28 loc) · 1.06 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>
<head>
<title>Panvas — An HTML5 Canvas Particle Simulation</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="author" content="Ben Hodgson">
<link rel="stylesheet" href="styles.css" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="panvas.js"></script>
</head>
<body>
<h1>HTML5 Canvas Particle Simulation</h1>
<div id="container">
<canvas id="panvas"></canvas>
</div>
<footer>
Hastily put together on a Saturday afternoon by
<a href="http://benhodgson.com/">Ben Hodgson</a>, with contributions from
<a href="http://www.nicksays.co.uk/">Nick Jones</a>. Inspired by
<a href="http://www.sebleedelisle.com/">Seb Lee–Delisle</a>’s
talk at <a href="http://2010.full-frontal.org/">Full Frontal 2010</a>.
</footer>
<footer>
<a id="fork_me" href="http://github.com/benhodgson/panvas"
title="Fork me on GitHub"></a>
</footer>
</body>
</html>