-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
140 lines (111 loc) · 5.37 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="es">
<head>
<title> Barbería alura </title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/x-icon" href="img/icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="logo">
<img src="img/logo.png" alt="logo">
</div>
<button class="button">
<svg class="svg" xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="currentColor"
viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z" />
</svg>
</button>
<nav class="nav ">
<ul class="ul">
<li class="li"><a href="index.html">Inicio</a></li>
<li class="li"><a href="servicios.html">Servicios</a></li>
<li class="li"><a href="contacto.html">Contacto</a></li>
</ul>
</nav>
</header>
<main>
<div class="formulario">
<h3 class="titulo-principal"> Déjanos tus datos </h3>
<div class="datos">
<form>
<label for="nombre-apellido"> Nombre y apellido </label>
<input type="text" id="nombre-apellido" class="input-padron" required>
<label for="correo"> Correo electrónico </label>
<input type="email" id="correo" 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) XXX XXXX XXX">
<label for="mensaje"> Mensaje </label>
<textarea id="mensaje" cols="79" rows="10" class="input-padron" required></textarea>
<fieldset>
<h3 class="titulo-principal"> ¿Cómo le gustaría que lo contactemos? </h3>
<label for="radio-email">
<input type="radio" name="contacto" value="email" id="radio-email"> Correo electrónico
</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>
<fieldset>
<h3 class="titulo-principal"> ¿En cuál horario le gustaría ser atendido? </h3>
<select name="" id="">
<option value=""> Mañana </option>
<option value=""> Tarde </option>
<option value=""> Noche </option>
</select>
</fieldset>
<label class="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" checked> ¿Le gustaría recibir novedades de
la
Barbería Alura?
</label>
<div class="boton">
<input type="submit" value="Enviar formulario" class="enviar">
</div>
<div class="horarios">
<p> Tenga en cuenta los horarios de nuestra Barbería: </p>
<table>
<thead>
<tr>
<th> Día </th>
<th> Horario </th>
</tr>
</thead>
<tbody>
<tr>
<td> Lunes </td>
<td> 08 h ~ 20 h </td>
</tr>
<tr>
<td> Miércoles </td>
<td> 08 h ~ 20 h </td>
</tr>
<tr>
<td> Viernes </td>
<td> 08 h ~ 20 h </td>
</tr>
</tbody>
</table>
</div>
</form>
</div>
</div>
</main>
<footer>
<img class="foot" src="img/logo-blanco.png" alt="Logo Barbería Alura">
<p class="copyright"> © Copyright Barbería Alura 2022 </p>
</footer>
<script src="https://cdn.lordicon.com/pzdvqjsp.js"></script>
<script src="js/index.js"></script>
</body>
</html>