-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (47 loc) · 1.41 KB
/
index.html
File metadata and controls
48 lines (47 loc) · 1.41 KB
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
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Physics</title>
<!---->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="lib/foundation5.2.2/js/vendor/modernizr.js"></script>
<script src="lib/foundation5.2.2/js/foundation.min.js"></script>
<script src="lib/foundation5.2.2/js/foundation/foundation.tooltip.js"></script>
<script src="lib/foundation5.2.2/js/foundation/foundation.alert.js"></script>
<script src="lib/three.min.js"></script>
<script src="lib/control.js"></script>
<link href="lib/foundation5.2.2/css/foundation.min.css" type="text/css" rel="stylesheet" />
<link href="css/Physics.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="fixed">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a href="#">Physics</a></h1>
</li>
</ul>
<section class="top-bar-section">
<ul class="right">
<li class="name">
<h1><a href="#">DBX 2015</a></h1>
</li>
</ul>
</section>
</nav>
</div>
<div class="row ">
<div class="large-12 columns">
<h1> </h1>
</div>
</div>
<div id="my_canvas"></div>
<div id="temp_messages_on_top">
</div>
</body>
<script src="js/Physics.js"></script>
<script>
$(document).foundation();
</script>
</html>