-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrorpage.html
43 lines (43 loc) · 1.89 KB
/
errorpage.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<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=Lato:ital,wght@0,400;0,700;0,900;1,400&family=Roboto+Condensed:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/default.css"> <!-- Estilos generales -->
<link rel="stylesheet" href="styles/entradas.css"> <!-- Estilos página entradas-->
<title>Paramount + - Entradas</title>
</head>
<body>
<header>
<nav class="navMenu">
<img src="static/images/paramountLogo.png" alt="logo paramount plus" class="mainLogo">
<ul class="navList">
<li><a href="index.html">HOME</a></li>
<li><a href="lapelicula.html">BLADE RUNNER 2049</a></li>
<li><a href="detalles.html">EVENTO</a></li>
<li><a href="nosotros.html">NOSOTROS</a></li>
</ul>
<a href="formulario.html" class="navEntradas">ENTRADAS</a>
</nav>
<h1 class="naranja">ENTRADAS</h1>
</header>
<main>
<section class="seccionEntradas">
<h5 class="subTitleError">Algo salió mal!</h5>
<button type="submit" class="submitButton">
<a href="formulario.html" class="textButton">Volver al Formulario</a>
</button>
</section>
</main>
<footer>
<div id="gridFooter">
<span class="rubik">Copyright © 2021 Rubik SRL</span><span>All Rights Reserved</span>
</div>
</footer>
</body>
</html>