-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (50 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>UChicago TechTeam</title>
<link type="text/css" rel="stylesheet" href="css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="css/custom.css" />
</head>
<body>
<!--Fixed navigation bar with drop-down menu
========================================-->
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<!--
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
-->
</button>
<a href="#" class="navbar-brand">UChicago TechTeam</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="html/about.html" class="dropdown-toggle" data-toggle="dropdown">About <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="html/about/whoweare.html">Who We Are</a></li>
<li><a href="html/about/mission.html">Mission</a></li>
<li><a href="html/about/team.html">Team</a></li>
</ul>
</li>
<li class="dropdown">
<a href="html/ourwork.html" class="dropdown-toggle" data-toggle="dropdown">Our Work <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="html/ourwork/girlsinc.html">Winter 2014: Girls Inc</a></li>
<li><a href="html/ourwork/bfc.html">Spring 2014: Barbara Flynn Currie</a></li>
</ul>
</li>
<li><a href="html/contact.html">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<!-- STATIC SCRIPT RESOURCES -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>