-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCorreoElectrónico.html
56 lines (49 loc) · 1.67 KB
/
CorreoElectrónico.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
<html lang="en">
<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">
<title>Document</title>
<link rel="stylesheet" href="css/CorreoElectrónico.css">
</head>
<script>
function redireccion(){
location.href = "FormularioEnviado.html"
}
function confirmarRespuesta(){
var respuesta = confirm("¿Está seguro de querer enviar el formulario?");
if(respuesta == true){
return true ;
}
else{
return false;
}
}
function Páginaprincipal() {
location.href="index.html"
}
function Juego() {
location.href="EntradaJuego.html"
}
</script>
<main>
<nav class="center">
<h2> <a onclick="window.location.href='https://www.youtube.com/c/Lasrecetasdemj1'"><img width="150em" src="Fotos/best-restaurant-logo-design-3.gif"></a></h2>
<a onclick="Páginaprincipal()" class="button">Página principal</a>
<a onclick="Juego()" class="button">Juego</a>
</nav>
<script>
function enviar() {
location.href=("Formulario.html");
}
</script>
<body>
<article class="enviado" id="DocumentoEnviado">
<h1>Antes de realizar el formulario por favor introduzca su correo electrónico</h1>
<form>
<input type="text" required>
</form>
<button id="boton" class="boton" onclick="location.href=('Formulario.html')">enviar</button>
</article>
</body>
</html>