-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
101 lines (77 loc) · 3.2 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
<!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>Tienda Online KitKan</title>
<link href="./style/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<a href="./img/fondo.jpg" class="fondo" widtg="100%" height="100%"></a>
<div class="logo">
<a href="./home.html" target="_blank">
<img src="./img/logo.jpg" alt="logo" width="160" height="120">
</a>
</div>
<div class="menuDos">
<a href="./login.html" target="">
<img src="./img/login.png" alt="login" width="28px" height="28px">
</a>
</div>
<div class="menuDos2">
<a href="#" target="">
<img src="./img/carrito.png" alt="carrito" width="28px" height="28px">
</a>
</div>
<section class="tiendaOnl">
<h2>Tú tienda Online de confianza:</h2>
</section>
<div class="nomTienda">
<strong>KitKan Shop</strong>
</div>
<div class="buscarEnTienda">
<input type="search" value="buscar">
</div>
<!--Botones del menu de la pagina-->
<input type="checkbox" id="btnmenu">
<label for="btnmenu"><img src="./img/menu.png" alt="" width="30px" height="30px"></label>
<nav class="menuTienda">
<ul class="menuOpciones">
<li><a href="./index.html" target="" class="item">Inicio</a></li>
<li><a href="./ropas.html" target="" class="item">Vestimentas</a></li>
<li><a href="./zapatillas.html" target="" class="item">Zapatillas</a></li>
<li><a href="./accesorios.html" target="" class="item">Accesorios</a></li>
<li><a href="./contacto.html" target="" class="item">Contacto</a></li>
</ul>
</nav>
</header>
<section>
<h4>Escríbenos tu comentario para seguir mejorando:</h4>
<p><em>Recuerda tambien escribirnos en nuestras redes sociales</em></p>
<label form="name">Apellidos y nombre(s):* </label>
<input type="text" id="name" required>
<br><br>
<label form="email">Email: </label>
<input type="email" id="email">
<br><br>
<label form="comentario">Deja tus comentarios</label><br>
<textarea name="comentario" id="comentario" cols="90" rows="10"></textarea>
<br><br>
</section>
<footer>
<h3>Contactanos en:</h3>
<div class="redsoc">
<h3>Redes sociales</h3>
<p>Consultados en nuestras redes sociales sobre nuestros productos</p>
<a href="www.facebook.com">
<img src="./img/facebook.png" alt="face" width="40" height="40">Facebook
</a>
<a href="https://web.whatsapp.com">
<img src="./img/whatsapp.png" alt="" width="40" height="40">WhatsApp
</a>
</div>
</footer>
</body>
</html>