-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
157 lines (150 loc) · 5.23 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
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
<html lang="en" class="h-100">
<head>
<title>Contact Pro</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!--fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700;800&family=Roboto:ital,wght@0,100;0,400;0,900;1,100;1,300;1,500;1,900&display=swap"
rel="stylesheet"
/>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
crossorigin="anonymous"
/>
<!--Dev Icons-->
<link
href="https://cdn.jsdelivr.net/gh/devicons/[email protected]/devicon.min.css"
rel="stylesheet"
/>
<!--Bootstrap icons-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<link href="/css/site.css" rel="stylesheet" />
</head>
<body>
<nav
class="navbar navbar-expand-md navbar-light fixed-top border-bottom border-light navShadow"
>
<div class="container-fluid">
<a class="navbar-brand" href="#"
><img src="/img/ContactPro.png" height="45"
/></a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarCollapse"
aria-controls="navbarCollapse"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="/contactlist.html">Contacts</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/category.html">Categories</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item me-2 mb-2">
<a
type="button"
class="btn btn-primary rounded-pill btnlinks"
href="#"
>Register</a
>
</li>
<li class="nav-item me-2">
<a
type="button"
class="btn btn-outline-primary rounded-pill btnlinks"
href="#"
>Login</a
>
</li>
</ul>
</div>
</div>
</nav>
<main class="content" id="mainHero">
<section class="container">
<div class="d-flex flex-column justify-content-center">
<div class="row row-cols-1">
<div class="col text-center">
<img src="img/oops.png" alt="Page not found" class="img-fluid" />
</div>
<div class="col text-center display-5 my-3 fw-bold">404</div>
<div class="col text-center h4">
The page you are looking for might have been removed had its name
changed or is temporarily unavailable.
</div>
<div class="col text-center mt-3">
<a href="index.html" class="btn btn-primary btn-lg rounded-pill"
>Go To Homepage<span class="fa fa-angle-right"></span
></a>
</div>
</div>
</div>
</section>
</main>
<footer class="footer container-fluid">
<div class="row align-items-center py-2">
<div class="col">
<div class="row align-items-center gy-2">
<div
class="col d-flex justify-content-center justify-content-md-start order-last order-md-first copyright"
>
© 2022 Dane Whitman All Rights Reserved
</div>
<div class="col d-flex justify-content-center">
<img src="img/ContactPro.png" height="50" />
</div>
<div
class="col-12 col-md d-flex justify-content-center justify-content-md-end"
>
<a href="#" class="socialicons"
><i class="bi bi-linkedin p-2"></i
></a>
<a href="#" class="socialicons"
><i class="bi bi-twitter p-2"></i
></a>
<a href="#" class="socialicons"
><i class="bi bi-youtube p-2"></i
></a>
<a href="#" class="socialicons"
><i class="bi bi-instagram p-2"></i
></a>
</div>
</div>
</div>
</div>
</footer>
<!-- Bootstrap JS -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"
></script>
</body>
</html>