-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (49 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Astronautas</title>
<link rel="stylesheet" href="./css/main.css">
<script src="https://kit.fontawesome.com/ad1c2ff10a.js"
crossorigin="anonymous"></script>
</head>
<body>
<header class="container">
<img class="logo" src="./img/logo.jpg" alt="Logo">
<nav class="main-nav">
<a class="nav-link" href="#">About</a>
<a class="nav-link" href="#">Portfolio</a>
<a class="nav-link" href="#">Job</a>
<a class="nav-link" href="#">Contact</a>
</nav>
</header>
<main class="container">
<div class="column-left">
<h1 class="main-title"><span>404</span>Lost in Space</h1>
<p class="description">You have reached the edge oh the universe. The page you requested could not be found. Don't worry and return to the previous page.</p>
<div class="btn-list">
<a class="btn" href="#">GO HOME</a>
<a class="btn" href="#">BACK</a>
</div>
</div>
<div class="column-right">
<img src="./img/astronautas.gif" src="#" alt="Astronautas raso zinute namo, nes isskrido is kosmosa.">
</div>
</main>
<footer class="container">
<div class="socials">
<a class="social-link" href="#">
<span class="fa-brands fa-square-facebook"></span>
<a class="social-link" href="#">
<span class="fa-brands fa-square-twitter"></span>
<a class="social-link" href="#">
<span class="fa-brands fa-square-instagram"></span>
<a class="social-link" href="#">
<span class="fa-brands fa-linkedin"></span>
</a>
</div>
<p class="copyright-text">© 2024 - All rights reserved</p>
</footer>
</body>
</html>