forked from hydrasbane1/tech-acc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path\
More file actions
110 lines (97 loc) · 2.83 KB
/
\
File metadata and controls
110 lines (97 loc) · 2.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang ="en">
<head>
<meta charset="utf-8">
<title>Arlington Career Center Parent Advisory Group</title>
<link rel="icon" href="static/media/techlogo.png">
<link rel="stylesheet" href="static/css/body.css">
<link rel="stylesheet" href="static/css/slide.css">
<link rel="stylesheet" href="static/css/header.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js">
</script>
<script>
$(document).ready(function() {
$('div#navb').click(function() {
$('nav#mainNav').addClass('mobileNav');
$('header div#navb').addClass('hide');
$('header div#close').removeClass('hide');
});
$('header div#close').click(function() {
$('nav#mainNav').removeClass('mobileNav');
$('header div#navb').removeClass('hide');
$('header div#close').addClass('hide');
});
});
</script>
<script type="text/javascript">
// Written by Kevin Cole [kjcole@ubuntu.com] 2014.10.24
//
// Dynamically resize the slideshow parent div to the size of the
// auto-resizing images within it. Sadly, it appears I cannot
// force the slideshow parent div to resize any other way. Bugger.
window.onload = window.onresize = function () {
var slides = document.getElementById("slides");
var slide = slides.children[0];
slides.style.height = slide.offsetHeight + "px";
}
</script>
</head>
<body>
<header>
<!--this is for the mobile functionality the navburger is the three horisontal lines in the top right of the mobile version-->
<div id="navb"><img src="static/media/navburger.svg" alt="navigation icon">
</div>
<div id="close" class="hide"><img src="static/media/exit.svg" alt="navigation exit button"></div>
<!--this list is for the nav bar-->
<nav id="mainNav">
<div class="button">About
<div class="dropdown">
<a>History</a>
<a>Plans</a>
</div>
</div>
<div class="button">FAQs
<div class="dropdown">
<a>ok</a>
<a>ok</a>
<a>ok</a>
<a>ok</a>
</div>
</div>
<div class="button">Programs
<div class="dropdown">
<a>Engineering</a>
<a>Computer Science</a>
<a>Psudo-Engineering</a>
<a>Forbidden Engineering</a>
</div>
</div>
<div class="logo">
<img src="static/media/techlogo.png" alt="Logo"/>
</div>
<div class="button">News
<div class="dropdown">
<a>ok</a>
<a>ok</a>
<a>ok</a>
<a>ok</a>
</div>
</div>
<div class="button">Links
<div class="dropdown">
<a>ok</a>
<a>ok</a>
<a>ok</a>
<a>ok</a>
</div>
</div>
<div class="button">Contact
<div class="dropdown">
<a>ok</a>
<a>ok</a>
<a>ok</a>
<a>ok</a>
</div>
</div>
</nav>
</header>