-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path500.html
More file actions
28 lines (26 loc) · 920 Bytes
/
500.html
File metadata and controls
28 lines (26 loc) · 920 Bytes
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/error-style.css">
<title>500 - Error del Servidor</title>
</head>
<body>
<div class="container">
<div class="circle">
<div class="sad-face">
<div class="mouth"></div>
</div>
</div>
<div class="error-number">500</div>
<div class="error-title">OOPS! INTERNAL SERVER ERROR</div>
<div class="error-message">
Lo sentimos, algo salió mal en nuestro servidor.<br>
Estamos trabajando para solucionarlo lo antes posible.
</div>
<a href="#" class="back-link">Volver al inicio</a><br><br>
<a href="javascript:location.reload()" class="retry-btn">Intentar de nuevo</a>
</div>
</body>
</html>