-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (84 loc) · 3.75 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
82
83
84
<!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>ACompany 404 Responsive</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<nav class="nav container">
<a href="#" class="nav-logo">ACOMPANY</a>
<div class="nav-menu" id="nav-menu">
<ul class="nav-list">
<li class="nav-item">
<a href="#" class="nav-link">Home</a>
</li>
</ul>
<ul class="nav-list">
<li class="nav-item">
<a href="#" class="nav-link">About</a>
</li>
</ul>
<ul class="nav-list">
<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>
<!-- NAV TOGGLE -->
<div class="nav-toggle" id="nav-toggle">
<i class='bx bx-menu'></i>
</nav>
</header>
<main class="main">
<section class="home">
<div class="home-container container">
<div class="home-content">
<span class="home-subtitle">Error 404</span>
<h1 class="home-title">Hey there 👋 </h1>
<p class="home-desc">Oops! We couldn't find the page you were looking for.</p>
<a href="#" class="button home-btn">Go Home</a>
</div>
<figure>
<img src="assets/wut.png" id="home-img" class="animate__animated animate__pulse animate__slow animate__infinite" alt="3D Illustration of a speech bubble and the word WUT">
<div class="img-shadow animate__animated animate__pulse animate__slow animate__infinite"></div>
</figure>
</div>
<footer class="home-footer">
<div class="home-footer-container container">
<div class="home-footer-content">
<h1 class="home-footer-title">ACompany</h1>
</div>
<div class="home-footer-social">
<a href="#" class="home-footer-social-item">
<i class='bx bxl-facebook-circle bx-tada-hover' ></i>
</a>
<a href="#" class="home-footer-social-item">
<i class='bx bxl-twitter bx-tada-hover'></i>
</a>
<a href="#" class="home-footer-social-item">
<i class='bx bxl-instagram bx-tada-hover'></i>
</a>
<a href="#" class="home-footer-social-item">
<i class='bx bxl-linkedin bx-tada-hover'></i>
</a>
</div>
</div>
</footer>
</section>
</main>
<script src="https://unpkg.com/scrollreveal"></script>
<script src="main.js"></script>
</body>
</html>