-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopen_hours.html
110 lines (103 loc) · 4.8 KB
/
open_hours.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Future University Library</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="assets/img/logo.png" />
<!--Imports Font Awesome Icons-->
<link href="assets/font-awesome/css/all.css" rel="stylesheet">
<!--Imports Materialize Minified CSS v1.0.0-->
<link rel="stylesheet" href="assets/css/materialize.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/main.css" />
</head>
<body class="red lighten-5">
<!-- Top Nagvigation Bar -->
<header>
<nav>
<div class="nav-wrapper red lighten-1">
<ul id="nav-mobile" class="left hide-on-med-and-down">
<li><a href="index.html">Home</a></li>
<li><a href="overview.html">Overview</a></li>
<li><a href="open_hours.html">Opening Hours</a></li>
<li><a href="staff.html">Library Staff</a></li>
<li><a href="regulations.html">Library Regulations</a></li>
<li><a href="instructions.html">Instructions</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<a href="#" class="brand-logo responsive center hide-on-large"><img src="assets/img/icon.png" class="unilogo left"
alt="">Future University Library</a>
<a href="#" class="brand-logo right show-on-large2 small-text"><img src="assets/img/icon.png" class="unilogo left"
alt=""> Future University Library</a>
<!-- Side-nav Trigger -->
<a href="#" data-target="slide-out" class="sidenav-trigger"><i class="fas fa-bars"></i></a>
</div>
</nav>
</header>
<!-- Side Navigation Bar -->
<ul id="slide-out" class="sidenav">
<li><a href="index.html">Home</a></li>
<li><a href="overview.html">Overview</a></li>
<li><a href="open_hours.html">Opening Hours</a></li>
<li><a href="staff.html">Library Staff</a></li>
<li><a href="regulations.html">Library Regulations</a></li>
<li><a href="instructions.html">Instructions</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<!-- Main Body Content -->
<main>
<div class="row container">
<div class="row">
<blockquote>
<h4>Opening Hours</h4>
</blockquote>
<p class="flow-text center-align">
From Saturday to Thursday the Library is open
<br>
From <span class="red-text">7:00 am</span> to <span class="red-text">5:00 pm</span>
<br>
Fridays and official holidays the library remains <strong class="red-text">closed</strong></p>
</div>
<div class="row center-align" onload="countDown()">
<h4 id="head">Library closes in:</h4>
<ul class="countdown">
<li><span id="hours" class="hanan-text"></span>Hours</li>
<li><span id="minutes" class="hanan-text"></span>Minutes</li>
<li><span id="seconds" class="hanan-text"></span>Seconds</li>
</ul>
</div>
</div>
</main>
<!-- Page Footer -->
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Future University's Library</h5>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Links</h5>
<ul style="width:60%;">
<li><a class="grey-text text-lighten-3" href="index.html">Home</a></li>
<li><a class="grey-text text-lighten-3" href="instructions.html">Instructions</a></li>
<li><a class="grey-text text-lighten-3" href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright red lighten-1">
<div class="container">
© 2018 Copyright The Future University
<a class="grey-text text-lighten-4 right" target="_blank" href="http://fu.edu.sd">The
University's Site</a>
</div>
</div>
</footer>
<!-- Imports Jquery v3.3.1 -->
<script src="assets/js/jquery-3.3.1.min.js"></script>
<!-- Imports Materialize Minified JavaScript v1.0.0 -->
<script src="assets/js/materialize.min.js"></script>
<script src="assets/js/$cript.js"></script>
</body>
</html>