-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
69 lines (56 loc) · 3.02 KB
/
contacto.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
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="Imágenes/9427.jpg"> <!-- icono al lado del nombre de la pagina -->
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style-home.css">
<title>Contacto</title>
</head>
<body>
<header>
<img class="banner2" src="Imágenes/banderadeargentina2.jpeg">
<div class="caja">
<nav><ul>
<li><a href="historia.html">Historia Selección</a></li>
<li><a href="fotos.html">Fotos</a></li>
<li><a href="compras.html">Compras</a></li>
<li><a href="index.html">Inicio</a></li>
</ul>
</nav>
</div>
<br>
<br>
<br>
<h1 class="titulo-principal">Contacto</h1>
</header>
<fieldset>
<br>
<form >
<label for="nombreapellido"> Ingrese su nombre y Apellido: </label>
<input type="text" id="nombreapellido" class="input-padron" placeholder="Nombre y Apellido" required ><br><br>
<label for="correoelectronico"> Ingrese su Correo Electrónico: </label>
<input type="email" id="correoelectronico" class="input-padron" placeholder="4646464@hhhh.com" required ><br><br>
<label for="telefono">Teléfono o Celular</label>
<input type="tel" id="telefono" class="input-padron" required placeholder="(XX) XXXX XXXX">
<label for="mensaje">Mensaje</label>
<textarea cols="70" rows="10" id="mensaje" class="input-padron" required></textarea>
</form>
</fieldset>
<fieldset>
<legend>¿Cómo le gustaría que lo contactemos?</legend>
<label for="radio-email"><input type="radio" name="contacto" value="email" id="radio-email">Email</label>
<label for="radio-telefono"><input type="radio" name="contacto" value="telefono" id="radio-telefono">Teléfono</label>
<label for="radio-whatsapp"><input type="radio" name="contacto" value="whatsapp" id="radio-whatsapp" checked>WhatsApp</label>
</fieldset>
<label class="checkbox"><input type="checkbox" checked>¿Le gustaría recibir novedades de nuestra página?</label>
<input type="submit" value="Enviar formulario" class="enviar">
<footer>
<hr>
<br>
<br>
<p class="copyright">© Copyright Gysleine Sarmiento 2024</p>
</footer>
</body>
</html>