-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquestions.html
61 lines (56 loc) · 1.81 KB
/
questions.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
<!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">
<link rel="stylesheet" href="jqueryui.css" type="text/css" media="all" />
<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 src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.22/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/questions.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 class="selected"><a href="questions.html">General Questions</a></li>
<li><a href="intQuestions.html">Interview Questions</a></li>
<li>Honor Code</li>
</ul>
</div>
</div>
<div id="content">
<div id="postQ">
<a href="#" onclick="postQuestion()">Post your own question here!</a>
</div>
<div id="container">
<h2>All Questions</h2>
<div id="questions">
</div>
</div>
</div>
<div id="post" style="display:none;">
<form id="myQuestion">
Question: <input name="text" type="text"><br/>
Course: <select name="course">
<!--AUTOLOAD THIS-->
<option value="0"></option>
<option value="1">COMP 426</option>
</select><br/>
<input name="user" style="display:none;">
Semester taken? (optional): <input name="semester" type="text"><br/>
Professor: <select name="professor">
<!--AUTOLOAD THIS-->
<option value="0"></option>
<option value="1">KMP</option>
</select>
</form>
</div>
<div id="footer">
<center>Presented by Jeremy Sullivan and Evan Snyder</center>
</div>
</body>
</html>