-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
index.html
81 lines (71 loc) · 2.5 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
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
<!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">
<title>Responsive 404 Page</title>
<!-- Boxicons -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="header">
<nav class="nav container">
<a href="" class="nav__logo">
COMPANY
</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="#" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="#" class="nav__link">Contact</a>
</li>
</ul>
<div class="nav__close" id="nav-close">
<i class='bx bx-x'></i>
</div>
</div>
<!-- Toggle Button -->
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-grid-alt'></i>
</div>
</nav>
</header>
<main class="main">
<section class="home">
<div class="home__container container">
<div class="home__data">
<span class="home__subtitle">Error 404</span>
<h1 class="home__title">Page not Found</h1>
<p class="home__description">
We can't seem to find the page <br> you are looking for.
</p>
<a href="" class="home__button">
Back Home
</a>
</div>
<div class="home__img">
<img src="img/ghost-img.png" alt="">
<div class="home__shadow"></div>
</div>
</div>
<footer class="home__footer">
<span>(554) 987-654</span>
<span>|</span>
<span>[email protected]</span>
</footer>
</section>
</main>
<!-- Scrollreveal -->
<script src="js/scrollreveal.min.js"></script>
<!-- Main Script -->
<script src="js/main.js"></script>
</body>
</html>