-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contacto.html
122 lines (90 loc) · 4.14 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Contacto - Barbería Alura</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
</head>
<!-- Acá esta la parte del banner junto con los accesos rapidos a las subpaginas de la webpage. -->
<body>
<header>
<div class="caja">
<h1><img src="Images/imagenesproductos/logo.png"></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>
<h2 class="titulo-principal">Contáctanos</h2>
<section id = "contact-div">
<form>
<label for="nombreapellido">Nombre y Apellidos:</label>
<input type="text" id="nombreapellido" class="input-padron" required>
<label for="correoelectronico">Correo Electrónico:</label>
<input type="email" id="correoelectronico" class="input-padron" required placeholder="email@dominio.com">
<label for="telefono">Teléfono:</label>
<input type="tel" id="telefono" class="input-padron" required placeholder="(+xx) xxxxxxxxxx">
<label for="mensaje">Mensaje:</label>
<textarea cols="70" rows="10" id="mensaje" class="input-padron"></textarea>
<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>
<div>
<table>
<thead>
<tr>
<th>Día</th>
<th>Horario</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lunes</td>
<td>08h - 20h</td>
</tr>
<tr>
<td>Miércoles</td>
<td>08h - 20h</td>
</tr>
<tr>
<td>Viernes</td>
<td>08h - 20h</td>
</tr>
</tbody>
</table>
</div>
<fieldset>
<legend>¿En cuál horario prefiere ser atendido?</legend>
<select>
<option>Mañana</option>
<option>Tarde</option>
<option>Noche</option>
</select>
</fieldset>
<label class="checkbox"><input type="checkbox" checked>¿Le gustaría recibir novedades de la Barbería Alura?</label>
<input type="submit" value="Enviar formulario" class="enviar">
</form>
</ul>
</section>
</main>
<footer>
<div class="footer">
<img src="Images/imagenesproductos/logo-blanco.png">
<p class="copyright">© Copyright Barbería Alura - 2020</p>
</div>
</footer>
</body>
</html>