-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
37 lines (37 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta name ="viewport" content = "width=device-width,initial-scale=1">
<title>Page Not Found</title>
<link rel="short icon" href="img/favicon.svg">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/1a5e1b48ba.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/404style.css">
</head>
<body>
<header>
<div class="container">
<a href="index.html" > <img src="img/logo.svg" class="logo"> </a>
<h2>Error 404</h2>
</div>
</header>
<main>
<section id="not-found">
<div class="container">
<h1>
<samp class="line">Sorry...</samp>
<samp class="line"> Wrong way</samp>
</h1>
<h1 class="home">
<a href="index.html">
<samp class="line">Lets go home </samp>
<samp class="line"> -><i class="fas fa-home"></i></samp>
</a>
</h1>
</div>
</section>
</main>
</body>
</html>