forked from theraacer/SHSWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaculty.html
94 lines (87 loc) · 2.17 KB
/
faculty.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
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
<!DOCTYPE html>
<html>
<head>
<title>Skyview High School</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"> <!--Fix for IE bug (css display:table/table-cell)-->
<meta name="author" content="Shyview Web Design Club">
<link rel="stylesheet" href="css/main.css">
<!--Adds section, article, aside, header, nav, and footer tags to old versions of IE-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="js/jquery.js"></script>
<script src="js/jquery.tablesorter.js"></script>
<script src="js/modernizr.js"></script>
<script src="js/main.js"></script>
<script src="js/faculty.js"></script>
</head>
<body>
<div id="container" class="tablesorter">
<header>
<a href="index.html"><img src="images/headerBG.png" /></a>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="students.html">Students</a></li>
<li><a href="parents.html">Parents</a></li>
<li><a href="faculty.html">Faculty</a></li>
<li><a href="clubs.html">Clubs</a></li>
<li><a href="sports.html">Sports</a></li>
<li><input type="text" id="search" /></li>
</ul>
</nav>
<section>
<article class="fullWidth">
<table id="faculty" class="tablesorter">
<thead>
<tr>
<th>Name</th>
<th>Class</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Annis, Erin</td>
<td>English</td>
</tr>
<tr>
<td>Armstrong, Dave</td>
<td>History</td>
</tr>
<tr>
<td>Azorr, Elyse</td>
<td>Math</td>
</tr>
<tr>
<td>Baird, Kim</td>
<td>Food Court</td>
</tr>
<tr>
<td>Baskette, Michael</td>
<td>Life Skills</td>
</tr>
<tr class="staffAssist">
<td>Batchelor, Berni</td>
<td>Staff Assistant</td>
</tr>
<tr class="staffAssist">
<td>Beatty, MaryAnn</td>
<td>Nurse</td>
</tr>
<tr>
<td>Beck, Micheal</td>
<td>Life Skills</td>
</tr>
</tbody>
</table>
</article>
<aside>
</aside>
</section>
<footer>
</footer>
</div>
</body>
</html>