-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.56 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Author" content="Estefani Leon Osorio">
<title>404 Not Found</title>
<link href="\assets\favicon.png" rel="icon">
<link rel="stylesheet" href="\css\style.css">
<script src="\js\app.js"></script>
</head>
<body class="body-scrollbar">
<header class="header">
<div class="wrapper">
<nav>404 Not Found</nav>
</div>
</header>
<section class="section">
<div class="wrapper">
<div class="sections">
<div class="img">
<img src="\assets\scarecrow.png" alt="Scarecrow">
</div>
<div class="content">
<h1>Oops! I have really bad news for you</h1>
<p class="text">
The website you are looking for is now unavailable. It might be removed or temporarily disabled
</p>
<a class="button">Back to homepage</a>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="wrapper">
<p>
Created by <a target="_blank" href="https://devchallenges.io/">Dev Challenges</a> and
Developed to complete the challenge by <a target="_blank" href="https://github.com/EstefaniLeon">Estefani León Osorio</a>.
</p>
</div>
</footer>
</body>
</html>