-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathintQuestions.html
39 lines (33 loc) · 1.02 KB
/
intQuestions.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="js/intQuestions.js"></script>
</head>
<body>
<div id="topBanner">
<h1>CS 4 US</h1>
<div id="nav">
<ul id="navList">
<li><a href="courses.html">Courses</a></li>
<li><a href="professors.html">Professors</a></li>
<li><a href="questions.html">General Questions</a></li>
<li class="selected"><a href="intQuestions.html">Interview Questions</a></li>
<li>Honor Code</li>
</ul>
</div>
</div>
<div id="content">
<div id="container">
<h2>List of Interview Questions</h2>
<div id="questions">
</div>
</div>
</div>
<div id="footer">
<center>Presented by Jeremy Sullivan and Evan Snyder</center>
</div>
</body>
</html>