-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (30 loc) · 1.35 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
39
40
<!doctype html>
<!--
(╯°□°)╯︵ ┻━┻ ¯\_(ツ)_/¯
@kelvin___
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>myParticles</title>
<meta name="description" content="Creating my own particle system.">
<meta name="author" content="Kelvin Zhao | @kelvin___">
<meta name="copyright" content="Kelvin Zhao | Copyright (c) 2015">
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<!--[if lt IE 8]>
<p>Holy! My grandma uses more updated browsers than you. Please <a href="http://browsehappy.com/">upgrade your browser here</a> to save the last strand of your dignity.</p>
<![endif]-->
<div id="my-particles"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-2.1.4.min.js">\x3C/script>')</script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/TweenMax.min.js"></script>
<script>window.TweenMax || document.write('<script src="js/TweenMax.min.js">\x3C/script>')</script>
<script src="js/app.min.js"></script>
</body>
</html>