-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
99 lines (81 loc) · 3.48 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 lang="es">
<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="style/style-reset.css">
<link rel="stylesheet" href="style/style-productos-contacto.css">
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="caja">
<h1><a href="index.html"><img src="img/Servicios/logo.png" alt=""></a></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 >
<div id="contacto-principal">
<form class="contacto-form" action="">
<label for="nombreApellido">Nombre y Apellido</label>
<input type="text" id="nombreApellido" class="input-padron" required>
<label for="email">Correo Electronico</label>
<input type="email" id="email" class="input-padron" required placeholder="[email protected]">
<label for="telefono">Teléfono</label>
<input type="tel" class="input-padron" required placeholder="(xxx) XXXX-XXXX">
<label for="mensaje">Mensaje</label>
<textarea name="" id="mensaje" cols="50" rows="20" class="input-padron" required></textarea>
<fieldset>
<legend>¿Como le gustaria que lo contactemos?</legend>
<label for="email"><input type="radio" name="contacto" id="email" required> E-mail</label>
<label for="tel"><input type="radio" name="contacto" id="tel">Telefono</label>
<label for="whatsapp"><input type="radio" name="contacto" id="whatsapp" checked>Whatsapp</label>
</fieldset>
<fieldset>
<legend>¿En cuál horario prefiere ser atendidó?</legend>
<select name="" id="">
<option value="">Mañana</option>
<option value="">Tarde</option>
<option value="">Noche</option>
</select>
</fieldset>
<label id="checkbox" for=""><input type="checkbox" name="" id="" checked>¿Le gustaría recibir novedades
de
la
Barbería Alura?</label>
<input type="submit" value="Enviar" class="enviar">
</form>
<table>
<thead>
<tr>
<th> Día </th>
<th> Horario </th>
</tr>
</thead>
<tbody>
<tr>
<td>Jueves </td>
<td> 10am ~ 20pm</td>
</tr>
<tr>
<td>Viernes</td>
<td>10am ~ 20pm</td>
</tr>
</tbody>
</table>
</div>
</main>
<footer>
<img src="img/Servicios/logo-blanco.png" alt="">
<p class="copyright"> © Copyright Barbería Alura 2022</p>
</footer>
</body>
</html>