-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
79 lines (79 loc) · 1.97 KB
/
404.html
File metadata and controls
79 lines (79 loc) · 1.97 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Oh Studio Clone</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap"
rel="stylesheet"
/>
<link
href="https://unpkg.com/aos@2.3.1/dist/aos.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body
style="
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
"
>
<header class="header">
<nav class="nav">
<ul class="list list--inline nav__list">
<a href="/index.html" class="list__item"><p>Home</p></a>
<a href="/profile.html" class="list__item"
><p>Profile</p></a
>
<a href="/contact.html" class="list__item"
><p>Contact</p></a
>
</ul>
</nav>
</header>
<main class="block-container" style="flex-grow: 1">
<section
data-aos="fade-up"
data-aos-duration="1000"
style="
height: 50vh;
display: flex;
justify-content: center;
align-items: center;
"
>
<article class="block-contact">
<h2 class="block-contact__text">Are you lost?</h2>
<h2 class="block-contact__text">
<a href="/index.html">Return Home.</a>
</h2>
</article>
</section>
</main>
<footer class="footer">
<div class="footer__info">
<img
style="height: 30px; width: 30px"
src="images/arrow.svg"
alt=""
/>
<p>© Yil Verdeja 2024</p>
</div>
<ul class="list list--inline footer__nav">
<a class="list__item"><p>Twitter</p></a>
<a class="list__item"><p>LinkedIn</p></a>
<a class="list__item"><p>Mail</p></a>
</ul>
</footer>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>