-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (152 loc) · 3.93 KB
/
index.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!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>Clase 06</title>
</head>
<body>
<header>
<div>
<a href="/">Grandes ofertas en comederos</a>
<div>
<select name="idioma" id="idioma">
<option value="">Español</option>
</select>
<select name="moneda" id="moneda">
<option value="">ARS$</option>
</select>
</div>
</div>
<div>
<a href="/">
<img src="./img/Logo.png" alt="Front Cat&Dog">
</a>
<nav>
<ul>
<li>
<a href="">
<img src="./img/patita-blanca.png" alt="">
<p>Categoría</p>
</a>
</li>
<li>
<a href="">
<img src="./img/patita-blanca.png" alt="">
<p>Pets</p>
</a>
</li>
<li>
<a href="">
<img src="./img/patita-blanca.png" alt="">
<p>Nosotros</p>
</a>
</li>
<li>
<a href="">
<img src="./img/patita-blanca.png" alt="">
<p>Contactanos</p>
</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<section>
<img src="./img/banner.jpg" alt="">
<div>
<p>¡Es un placer tenerte aquí!</p>
<p>¡Comederos en descuento!</p>
<button>Comederos</button>
</div>
</section>
<section>
<img src="./img/patita-amarilla.png" alt="">
<h1>Productos Destacados</h1>
<ul>
<li><a href="">Comederos</a></li>
<li><a href="">Accesorios</a></li>
<li><a href="">Comida</a></li>
</ul>
<div>
<div>
<img src="./img/churrasquito.png" alt="Juguete Churrasquito">
<div>
<p>Juguete Churrasquito</p>
<span>$150</span>
</div>
</div>
<div>
<img src="./img/comedero.png" alt="Juguete Comedero">
<div>
<p>Comedero para perro</p>
<span>$250</span>
</div>
</div>
<div>
<img src="./img/Huesito.png" alt="Juguete Huesito">
<div>
<p>Juguete Huesito</p>
<span>$650</span>
</div>
</div>
</div>
</section>
<section>
<h2>Contáctanos</h2>
<form>
<input type="text" placeholder="Nombre y Apellido">
<input type="email" name="" id="" placeholder="Ingresa tu correo electrónico">
<input type="tel" name="" id="" placeholder="Teléfono">
<div>
<button type="reset">Resetear</button>
<button type="submit">Enviar</button>
</div>
</form>
</section>
</main>
<footer>
<div>
<div>
<img src="./img/enviar-correo.png" alt="">
<p>Suscríbete para más novedades</p>
</div>
<form>
<input type="email" name="" id="" placeholder="Ingresa tu correo electrónico">
<button type="submit">Suscribirme</button>
</form>
</div>
<div>
<ul>
<li>
<img src="./img/location.png" alt="icono localidad">
<div>
<p>Localidad</p>
<p>Calle - provincia</p>
</div>
</li>
<li>
<img src="./img/phone.png" alt="icono telefono">
<div>
<p>Teléfono</p>
<a href="tel:+">Número de teléfono</a>
</div>
</li>
<li>
<img src="./img/correo.png" alt="icono correo">
<div>
<p>Correo electrónico</p>
<a href="mailto:">Dirección de correo</a>
</div>
</li>
</ul>
<img src="./img/Logo.png" alt="Front Cat&Dog">
</div>
<div>
<p>Todos los derechos reservados Front End</p>
</div>
</footer>
</body>
</html>