-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyTimetable.html
66 lines (64 loc) · 1.84 KB
/
myTimetable.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
<//
Document : instruction
Created on : Mar 15, 2020, 11:14:23 AM
Author : HYAT
//>
<!DOCTYPE html>
<html>
<style>
#button {
width: 6em;
border: 2px solid green;
background: #ffe;
border-radius: 5px;
}
a {
display: block;
width: 100%;
line-height: 2em;
text-align: center;
text-decoration: none;
border-radius: 5px;
}
a:hover {
color: red;
background: #eff;
}
</style>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/timetabling.css">
<title>instruction</title>
</head>
<body>
<div id="main">
<div id="header">
<div id="widgetBar">
<div class="logo">
<img align="left" src="logo.jpg" alt="logo" width="300" height="100">
</div>
<div class="button">
<button class="btn login" id="logout" onclick="javascript:location.href='index.html'">Logout</button>
<!--<script src="logout.js"></script>-->
</div>
<div class="button">
<button class="btn login" id="aboutUs" onclick="javascript:location.href='aboutUs.html'">About us</button>
</div>
<div class="button">
<button class="btn login" id="My Timetable" onclick="javascript:location.href='myTimetable.html'">My timetable</button>
</div>
<div class="button">
<button class="btn login" id="instruction" onclick="javascript:location.href='instruction.html'">Swap class</button>
</div>
</div>
<h1>My Timetable:
</h1>
<p><img align="center" src="myTimetable.jpg" alt="myTimetable" width="600" height="800"> </img></p>
<div id="footer">
<hr>
<p id="footerText">Group 18 The time tabling system</p>
</div>
</div>
</div>
</body>
</html>