-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
105 lines (79 loc) · 3.8 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
<!DOCTYPE html>
<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>Contacto - Barbería Alura</title>
<link rel="stylesheet" href="reset.css"></linkrel>
<link rel="stylesheet" href="style.css"></linkrel>
</head>
<body>
<header>
<div class="caja">
<h1><img src="imagenes/logo.png" alt="Logo Barberia"></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 = "name">Nombre y Apellido:</label>
<input type ="text" id="name" class="input-patron" required placeholder="Marty Mcfly">
<label for = "email">Correo electrónico:</label>
<input type ="email" id="email" class="input-patron"required placeholder="mcfly@volveralfuturo.com">
<label for = "phone">Teléfono:</label>
<input type ="tel" id="phone" class="input-patron"required placeholder="+57 3053005000">
<label for="msj">Mensaje:</label>
<textarea cols="20" rows="10" id="msj" class="input-patron" required placeholder="Quisiera que por favor..."></textarea>
<fieldset>
<legend>¿Cómo le gustaría que lo contactáramos?</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="tel" id="radio-telefono">Teléfono</label>
<label for="radio-WhatsApp"> <input type ="radio" name="contacto" value="WhatsApp" id="radio-WhatsApp" checked>WhatsApp</label>
</fieldset>
<fieldset>
<legend>¿En qué horario prefiere ser atendido?</legend>
<select class="select">
<option>Mañana</option>
<option>Tarde</option>
<option>Noche</option>
</select>
</fieldset>
<p><label class="checkbox"><input type ="checkbox" checked>¿Le gustaría recibir novedades y promociones?</label>
<input type ="submit" value="Enviar Formulario" class="enviar">
</form>
<table>
<thead>
<tr>
<th>Día</th>
<th>Horario</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lunes</td>
<td>08h a 20h</td>
</tr>
<tr>
<td>Miércoles</td>
<td>08h a 20h</td>
</tr>
<tr>
<td>Viernes</td>
<td>08h a 20h</td>
</tr>
</tbody>
</table>
</main>
<footer>
<img src="imagenes/logo-blanco.png" alt="logo Barbería">
<p class="copyright"> © Copyright - Barbería Alura - 2022</p>
</footer>
</body>
</html>