-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
63 lines (48 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="RobSm!th">
<meta name="description" content="A basic responsive web page using Bootstrap">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<!-- Other Styles and CSS -->
<link rel="stylesheet" href="css/styles.css">
<!-- Favicons -->
<link rel="icon" href="favicon.ico" type="image">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon_smile_monocle/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon_smile_monocle/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon_smile_monocle/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>Oops - 404 Not Found</title>
</head>
<body>
<section class="hero">
<h1 class="four_h1">404 Page Not Found</h1>
<p class="four_p">Sorry, but the page you were trying to view does not exist.</p>
<p>Take me back to the <a href="index.html">Home Page</a> please!</p>
</section>
<!-- Footer Section -->
<footer>
<p class="copy">© 2020 RobSm!th</p>
</footer>
<!-- /Footer Section -->
<!-- My Scripts -->
<!-- <script src="js/main.js"></script> -->
<!-- Fontawesome -->
<script src="https://kit.fontawesome.com/6d0ef8f08a.js" crossorigin="anonymous"></script>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous">
</script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.3/dist/umd/popper.min.js" integrity="sha384-W8fXfP3gkOKtndU4JGtKDvXbO53Wy8SZCQHczT5FMiiqmQfUpWbYdTil/SxwZgAN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.min.js" integrity="sha384-skAcpIdS7UcVUC05LJ9Dxay8AXcDYfBJqt1CJ85S/CFujBsIzCIv+l9liuYLaMQ/" crossorigin="anonymous"></script>
-->
</body>
</html>