-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_us.php
59 lines (53 loc) · 1.52 KB
/
about_us.php
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
57
58
]<html>
<head>
<title> Fantasy Politics </title>
<link rel="SHORTCUT ICON" href="images/icon.jpg"/>
<link rel="stylesheet" type="text/css" href="stylesheets/menu_bar.css"/>
<link rel="stylesheet" type="text/css" href="stylesheets/about.css"/>
<link rel="stylesheet" type="text/css" href="stylesheets/global.css"/>
</head>
<body background="images/flag.jpg">
<script>
var el = document.getElementsByTagName("body")[0];
el.className = "";
</script>
<div id="top">
<div class="inner">
<div id="logo">
<h3> chooseyourchief.com </h3>
</div>
<nav id="navbar">
<?php require_once 'navbar.php'; ?>
</nav>
</div>
</div>
<div id="main">
<h1>About Us</h1>
<div id="text">
We are sophomores taking 6.470, an MIT Web Design competition / class. We enjoy counting, winning, and chilling in our free time.
</div>
<div id="pics">
<img src="images/tim_bamf.jpg"/>
<img src="images/bsmoney.jpg"/>
</div>
</div>
<script src="javascript/jquery.js"></script>
<script src="javascript/modernizr.js"></script>
<script>
(function($){
var nav = $("#navbar");
nav.find("li").each(function() {
if ($(this).find("ul").length > 0) {
$("<span>").text("^").appendTo($(this).children(":first"));
$(this).mouseenter(function(){
$(this).find("ul").stop(true, true).slideDown(70);
});
$(this).mouseleave(function(){
$(this).find("ul").stop(true, true).slideUp(200);
});
}
});
})(jQuery);
</script>
</body>
</html>