-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample3.html
More file actions
40 lines (28 loc) · 1.04 KB
/
example3.html
File metadata and controls
40 lines (28 loc) · 1.04 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Example 2</title>
<link rel="stylesheet" type="text/css" href="example3.css"/>
<script type="text/javascript" src="jquery-1.4.4.js"></script>
<script type="text/javascript" src="example3.js"></script>
<script type="text/javascript" src="dodl_lib.js"></script>
<script type="text/javascript" src="example3_dodl.js"></script>
</head>
<body>
<div id='sidebar'>
<ul>
<li><a href='http://wtfbbqlol.com/' class='selected'>Computer Science<a/></li>
<li><a href='http://wtfbbqlol.com/'>Electrical Engineering</a></li>
<li><a href='http://wtfbbqlol.com/'>Math</a></li>
<li><a href='http://wtfbbqlol.com/'>Physics</a></li>
<br/>
<li><input type='button' value='add department'/></li>
</ul>
</div>
<img src='vrule.png' id='vrule'/>
<div id='mainpanel'>
<input type='button' value='add class' onclick="add_class()"/>
</div>
</body>
</html>