-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
78 lines (70 loc) · 3.34 KB
/
404.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Página no encontrada</title>
<link rel="icon" href="img/isotipo.svg" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="#">
<i class="lucide-code-2 me-2"></i>
MR Soluciones Digitales</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="/">Inicio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#contact">Contacto</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<section id="home" class="bg-dark text-white min-vh-100 d-flex align-items-center">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h1 class="display-4 fw-bold mb-4">Error 404</h1>
<p class="lead mb-4">Página no encontrada</p>
<a href="/" class="btn btn-light btn-lg me-3">
Ir al inicio</a>
</div>
<div class="col-lg-6">
<div class="d-flex justify-content-center">
<div class="position-relative"><svg xmlns="http://www.w3.org/2000/svg" width="48"
height="48" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round"
class="lucide lucide-code position-absolute" style="top: 20%; left: 10%;">
<polyline points="16 18 22 12 16 6"></polyline>
<polyline points="8 6 2 12 8 18"></polyline>
</svg>
<img src="img/404.jpg" alt="no-signal" class="img-fluid rounded-circle shadow-lg"
style="width: 400px; height: 400px; object-fit: cover;"></div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="bg-dark text-white text-center py-4 border-top">
<p class="mb-0">© 2024 MR Soluciones Digitales. Todos los derechos reservados.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://unpkg.com/lucide@latest"></script>
<script src="js/main.js"></script>
<script>
lucide.createIcons();
</script>
</body>
</html>