forked from GoldinGuy/GradesSite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
70 lines (62 loc) · 1.99 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- SITE TITTLE -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>SwiftGrade</title>
<!-- PLUGINS CSS STYLE -->
<!-- Bootstrap -->
<link href="plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- Themefisher Font -->
<link href="plugins/themefisher-font/style.css" rel="stylesheet" />
<!-- Owl Carousel -->
<link
href="plugins/owl-carousel/assets/owl.carousel.min.css"
rel="stylesheet"
media="screen"
/>
<!-- Owl Carousel Theme -->
<link
href="plugins/owl-carousel/assets/owl.theme.green.min.css"
rel="stylesheet"
media="screen"
/>
<!-- Fancy Box -->
<link href="plugins/fancybox/jquery.fancybox.min.css" rel="stylesheet" />
<!-- CUSTOM CSS -->
<link href="css/style.css" rel="stylesheet" />
<!-- FAVICON -->
<link href="images/favicon.png" rel="shortcut icon" />
</head>
<body class="body-wrapper">
<section class="error-page">
<div class="center">
<div class="block text-center">
<h1>404</h1>
<h3>Page Not Found</h3>
<p>
The link you clicked may be broken or the <br />page may have been
removed.
</p>
<a href="index.html" class="btn btn-main">visit homepage</a>
</div>
</div>
</section>
<!-- JAVASCRIPTS -->
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBI14J_PNWVd-m0gnUBkjmhoQyNyd7nllA"
async
defer
></script>
<script src="plugins/jquery/jquery.js"></script>
<script src="plugins/popper/popper.min.js"></script>
<script src="plugins/bootstrap/js/bootstrap.min.js"></script>
<script src="plugins/owl-carousel/owl.carousel.min.js"></script>
<script src="plugins/fancybox/jquery.fancybox.min.js"></script>
<script src="plugins/smoothscroll/SmoothScroll.min.js"></script>
<script src="plugins/syotimer/jquery.syotimer.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>