-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
26 lines (25 loc) · 1.08 KB
/
error.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error 404 - Página no encontrada</title>
<!-- Agregar enlaces a los archivos CSS de Bootstrap -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container text-center">
<div class="row">
<div class="col-md-12">
<h1 class="display-4">Error 404</h1>
<p class="lead">La página que estás buscando no se pudo encontrar.</p>
<a class="btn btn-primary" href="/">Ir a la página de inicio</a>
</div>
</div>
</div>
<!-- Agregar enlaces a los archivos JavaScript de Bootstrap -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.3/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>