-
Notifications
You must be signed in to change notification settings - Fork 1
/
oops.html
186 lines (157 loc) · 7.41 KB
/
oops.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== Favicon ===============-->
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/png">
<!--=============== Boxicons ===============-->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/schedules.css">
<title>Oops!</title>
</head>
<body>
<header class="header" id="header">
<nav class="nav container">
<a href="index.html"><img src="assets/img/logo1.png" class="logo"></a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="index.html" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="schedule.html" class="nav__link active-link">Schedules</a>
</li>
<li class="nav__item">
<a href="About Us.html" class="nav__link">About Us</a>
</li>
</ul>
<i class='bx bx-x nav__close' id="nav-close"></i>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-menu'></i>
</div>
</nav>
</header>
<main class="main">
<!--==================== HOME ====================-->
<section class="home" id="home">
<img src="assets/img/404.jpg" alt="" class="home__img">
<div class="home__container container grid">
<div class="home__data">
<!-- <h1 class="home__data-title"> 404 Not Found! </b></h1> -->
</div>
</div>
</section>
<section class="testimonial section" id="testimonial">
<h2 class="section__title">Sorry! The Page You Were Looking For Does Not Exist! <br>You Will Be Redirected To The Home Page In <span id="seconds">7</span> Seconds.</h2>
</section>
</main>
<!--==================== FOOTER ====================-->
<footer class="footer section">
<div class="footer__container container grid">
<div class="footer__content grid">
<div class="footer__data">
<h3 class="footer__title">Urbanway</h3>
<p class="footer__description">Wave goodbye to <br> tedious ticket counters and
embrace the future with <br> UrbanWay!
</p>
<div>
<a href="https://www.facebook.com/" target="_blank" class="footer__social">
<i class='bx bxl-facebook-circle' ></i>
</a>
<a href="https://twitter.com/" target="_blank" class="footer__social">
<i class='bx bxl-twitter' ></i>
</a>
<a href="https://www.instagram.com/" target="_blank" class="footer__social">
<i class='bx bxl-instagram'></i>
</a>
<a href="https://www.youtube.com/" target="_blank" class="footer__social">
<i class='bx bxl-youtube' ></i>
</a>
</div>
</div>
<div class="footer__data">
<h3 class="footer__subtitle">About</h3>
<ul>
<li class="footer__item">
<a href="" class="footer__link">About Us</a>
</li>
<li class="footer__item">
<a href="" class="footer__link">Features</a>
</li>
<li class="footer__item">
<a href="" class="footer__link">News & Blog</a>
</li>
</ul>
</div>
<div class="footer__data">
<h3 class="footer__subtitle">Company</h3>
<ul>
<li class="footer__item">
<a href="" class="footer__link">Team</a>
</li>
<li class="footer__item">
<a href="" class="footer__link">Plan Pricing</a>
</li>
<li class="footer__item">
<a href="" class="footer__link">Become a member</a>
</li>
</ul>
</div>
<div class="footer__data">
<h3 class="footer__subtitle">Support</h3>
<ul>
<li class="footer__item">
<a href="" class="footer__link">FAQs</a>
</li>
<li class="footer__item">
<a href="" class="footer__link">Support Center</a>
</li>
<li class="footer__item">
<a href="" class="footer__link">Contact Us</a>
</li>
</ul>
</div>
</div>
<div class="footer__rights">
<b><p class="footer__copy">© Team 5 - Sahan Tashiya Gihan Abishek Inura Layan. ICT 142-3 Group Project</p></b>
<div class="footer__terms">
<a href="#" class="footer__terms-link">Terms of Service</a>
<a href="#" class="footer__terms-link">Privacy Policy</a>
</div>
</div>
</div>
</footer>
<!--========== SCROLL UP ==========-->
<a href="#" class="scrollup" id="scroll-up">
<i class='bx bxs-chevron-up bx-fade-up scrollup__icon' ></i>
</a>
<!--=============== SCROLL REVEAL===============-->
<script src="assets/js/scrollreveal.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
<script>
var seconds = 7;
var count;
function redirect() {
document.location.href = 'index.html';
}
function updateSecs() {
document.getElementById("seconds").innerHTML = seconds;
seconds--;
if (seconds == -1) {
clearInterval(count);
redirect();
}
}
function countdownTimer() {
count = setInterval(function () {
updateSecs()
}, 1000);
}
countdownTimer();
</script>
</body>
</html>