-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.html
More file actions
44 lines (44 loc) · 1.48 KB
/
contacto.html
File metadata and controls
44 lines (44 loc) · 1.48 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contacto</title>
</head>
<body>
<header>
<h1>Contacto</h1>
<p>Para cualquier consulta, por favor completa el siguiente formulario:</p>
</header>
<section>
<form>
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" placeholder="Ingrese su nombre" required>
<br>
<br>
<label for="apellido">Apellido:</label>
<input type="text" id="apellido" name="apellido" placeholder="Ingrese su apellido" required>
<br>
<br>
<label for="email">Correo electrónico:</label>
<input type="email" id="email" name="email" placeholder="Ingrese su correo electrónico" required>
<br>
<br>
<label for="mensaje">Mensaje:</label>
<textarea id="mensaje" name="mensaje" rows="5" cols="30" placeholder="Ingrese sus comentarios" required></textarea>
<br>
<br>
<button type="submit">Enviar</button>
<br>
<br>
</form>
<hr>
</section>
<footer>
<p>© 2025 walaJR Store.</p>
<a href="index.html">Página principal -</a>
<a href="juegosFisicos.html">Juegos físicos -</a>
<a href="juegosDigitales.html">Juegos digitales</a>
</footer>
</body>
</html>