-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexreturn.html
76 lines (67 loc) · 1.81 KB
/
indexreturn.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
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>HAHS Timetable</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="style.css" rel="stylesheet" />
<style type="text/css">
#bell {
text-align: center;
}
#bell-current {
font-size: 1.5em;
}
#bell-descript {
font-size: 4em;
}
#bell-countdown {
font-size: 6em;
}
@media (max-width: 767px) {
#bell-countdown {
font-size: 5em;
}
}
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">HAHS Timetable</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="faq.html">FAQ</a></li>
<li><a href="edit.html">Edit timetable</a></li>
<li><a href="belltimes.html">Bell times</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="http://hurlstone.com.au">HAHS website</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<noscript>
<div class="alert alert-warning">
<p>You need JavaScript enabled to use this webapp!</p>
</div>
</noscript>
<div id="bell">
<p id="bell-current" style="display:none"></p>
<p id="bell-descript">School resumes</p>
<p id="bell-descript">Wed 28: Year 7,11,12</p>
<p id="bell-descript">Thu 29: Year 8,9,10</p>
<p id="bell-in"><a href="belltimes.pdf">Click here to download the bell times</a></p>
</div>
</div>
</body>
</html>