-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (17 loc) · 828 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Object-Oriented Javascript Christmas Lights</title>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:100' rel='stylesheet' type='text/css'>
<meta name="description" content="Demonstration of object-oriented Javascript by Forrest Tanaka">
<link rel="stylesheet" href="screen.css">
</head>
<body>
<div class="lights"></div>
<div class="intro"><a href="http://forrest-tanaka.com/javascript-object-oriented-christmas-lights/" target="_blank" title="Forrest Tanaka’s object-oriented Javascript tutorial">Object-Oriented Javascript Christmas Lights Demo</a></div>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="christmas-lights.js"></script>
<script src="site.js"></script>
</body>
</html>