-
Notifications
You must be signed in to change notification settings - Fork 191
/
404.html
30 lines (28 loc) · 978 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>404 NOT FOUND</title>
</head>
<style>
body{
background-color: #0e2431;
}
</style>
<body>
<div class="text-center">
<img src="./images/8.-Error-404.png" class="error-img">
<h3 class="error-heading">
Look like you're lost
</h3>
<br>
<p class="error-para">the page you are looking for not avaible!</p>
<button class="error-btn"><a href="./index.html" class="link_404">Go to Home</a></button>
</div>
</body>
</html>