forked from icl/187A_usability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (31 loc) · 1.27 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
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>A Generic Page</title>
<meta name="description" content="something good should go here">
<meta name="author" content="your name should go here">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Base Stylsheets http://twitter.github.com/bootstrap/ -->
<link rel="stylesheet" href="stylesheets/lib/bootstrap.css" >
<link rel="stylesheet" href="stylesheets/lib/jquery.fancybox.css" >
<!-- Your Stylesheets -->
<link rel="stylesheet" href="stylesheets/main.css" >
<!-- jQuery http://jquery.com/ -->
<script src="javascripts/lib/jquery-1.7.1.min.js"></script>
<!-- Bootstrap Javascripts http://twitter.github.com/bootstrap/javascript.html -->
<script src="javascripts/lib/bootstrap.js"></script>
<!-- Fancybox Lightbox http://fancyapps.com/fancybox/#examples -->
<script src="javascripts/lib/jquery.fancybox.js"></script>
<!-- Your Javascripts -->
<script src="javascripts/main.js"></script>
</head>
<body>
<div class="container">
Put Stuff Here
</div> <!-- end container -->
</body>
</html>