-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
99 lines (77 loc) · 2.51 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Productos - Barbería Alura</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="Caja">
<h1><img src="imagenes/logo.png" alt="logo de la barbería Alura"></h1>
<nav>
<ul>
<li> <a href="index.html">Home</a></li>
<li> <a href="Productos.html">Productos</a></li>
<li> <a href="contacto.html">Contacto</a></li>
</ul>
</nav>
</div>
</header>
<main>
<form>
<label for="nombreapellido">Nombre Y Apellido</label>
<input type="text" id="nombreapellido" class="input-padron" required>
<label for="correoelectronico">Correo Electronico</label>
<input type="email" id="correoelectronico" class="input-padron" required placeholder="email@dominio.com">
<label for="telefono">Telefono</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>
<fieldset>
<legend>Como 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">Telefono</label>
<label for="radio-WhatsApp"><input type="radio" name=contacto value="WhatsApp" id="radio-WhatsApp" checked>WhatsApp</label>
</fieldset>
<div>
<legend>En cúal horario prefiere ser atendido?</legend>
<select>
<option >Manaña</option>
<option >Tarde</option>
<option >Noche</option>
</select>
</div>
<label class="checkbox"><input type="checkbox" checked>Le gustaría recibir novedades de la barbería Alura?</label>
<input type="sumbit" value="Enviar formulario" class="enviar"></input>
</form>
<table>
<thead>
<tr>
<th>Día</th>
<th>horario</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lunes</td>
<td>08h ~ 20h</td>
</tr>
<tr>
<td>Miercoles</td>
<td>08h ~ 20h</td>
</tr>
<tr>
<td>Viernes</td>
<td>08h ~ 20h</td>
</tr>
</tbody>
</table>
</main>
<footer>
<img src="imagenes/logo-blanco.png" alt="logo de la barbería Alura"></img>
<p class="copyrigth">© Copyrigth Barbería Alura - 2023</p>
</footer>
</body>
</html>