-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
103 lines (86 loc) · 3.31 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="style/reset.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style.css">
<title>Contacto - Barberia Orinokia </title>
</head>
<header class="header">
<div class="caja">
<div class="float-area">
<img src="imagenespro/logo.png"
class="floating-img" alt="my floating image">
</div>
<div class="animation">
<lottie-player src="/images/88716-barber.json" background="transparent" speed="1" style="width: 300px; height: auto;" loop autoplay></lottie-player>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="productos.html">Productos</a></li>
<li><a href="contacto.html">Contactos</a></li>
</ul>
</nav>
</div>
</header>
<body>
<main>
<form action="">
<label for="nombreapellido">Nombre Y Apellido</label>
<input type="text" id="nombreapellido" class="input-padron" required placeholder="Nombres y Apellido Completo">
<label for="correoelectronico">Correo Electronico</label>
<input type="email" id="correoelectronico" class="input-padron" required placeholder="[email protected]">
<label for="telefono">telefono</label>
<input type="tel" id="telefono" class="input-padron" placeholder="(00)(12345678)">
<label for="Mensaje">Mensaje</label>
<textarea name="mensaje" id="" cols="70" rows="10" class="input-padron" required placeholder="Datos tu opinion o sugerencia"></textarea>
<fieldset>
<legend class="parrafo-gus">¿Como te gustaria que te Contatara?</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-whatsaap"><input type="radio" name="contacto" value="whatsapp" id="radio-whatsaap" checked>Whatssap</label>
</fieldset>
<fieldset>
l<legend >¿Cual horario quieres ser atendido?</legend>
<select name="" id="">
<option value="">Mañana</option>
<option value="">Tarde</option>
<option value="">Noche</option>
</select>
</fieldset>
<label class="checkbox" ><input type="checkbox" checked>Te gustaria recibir novedades de la Barberia</label>
<input type="submit" class="enviar" value="Enviar Formulario">
</form>
<table>
<thead>
<tr>
<th>Dia</td>
<th>Horario</td>
</tr>
</thead>
<tbody>
<tr>
<td>Lunes</td>
<td>8am ~ 20H</td>
</tr>
<tr>
<td>Miercoles</td>
<td>8am ~ 20H</td>
</tr>
<tr>
<td>Viernes</td>
<td>8am ~ 20H</td>
</tr>
</tbody>
</table>
</main>
<footer>
<img src="imagenespro/logo-blanco.png" alt="logo">
<p class="copyright">© Copyght Barberia Orinokia 2022</p>
</footer>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
</body>
</html>