-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteachers.html
More file actions
37 lines (36 loc) · 1.04 KB
/
Copy pathteachers.html
File metadata and controls
37 lines (36 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
<!DOCTYPE html>
<html>
<head>
<title>Computer Checkout</title>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="favicon.png">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link href="css/south-street/jquery-ui-1.10.3.custom.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css" >
<script src="js/jquery-1.9.1.js"></script>
<script src="js/jquery-ui-1.10.3.custom.js"></script>
</head>
<body>
<div id="tabs">
<ul>
<li><a href="#tab1">Checkout computers</a></li>
<li><a href="#tab2">Show future reservations by room</a></li>
<li><a href="#tab3">Show past reservations by room</a></li>
</ul>
<div id="tab1">
<iframe id="one" name="one" src="reserve.html" width="500" height="700"></iframe>
</div>
<div id="tab2">
<iframe id="two" src="roomLocator.html" width="500" height="700"></iframe>
</div>
<div id="tab3">
<iframe id="three" src="pastLocator.html" width="500" height="700"></iframe>
</div>
</div>
</body>
<script>
// Tabs
//$('#tabs').tabs();
$("#tabs").tabs({selected:0});
</script>
]</html>