-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpetshop.html
165 lines (124 loc) · 5.74 KB
/
petshop.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
165
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<link href="css/styles.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Petshop</title>
</head>
<body>
<!-- Contenido para la cabecera-->
<header>
<!-- Barra superio - TOP - -->
<section id="top">
<p id="toptexto"> Grandes ofertas en comederos</p>
<nav id="topmenu">
<span><a href="#"></a>Español</span>
<span><a href="#"></a>$ARG </span>
</nav>
</section>
<!-- Barra de menú principal-->
<section id="barra2">
<article id="logo">
<img class="img-logo" src="img/gatito1.png" >
<span id="Front">Front </span>
<span id="catydog">Cat&Dog </span>
<img class="img-logo" src="img/perrito1.png" >
</article>
<nav >
<ul type="none" id="nav-principal">
<li><img src= "img/ipatita2.png" width="10" height="10" ><a href="">Categorías</a> </li>
<li><img src= "img/patita.jpg" width="10" height="10"><a href="">Pets</a> </li>
<li><img src= "img/patita.jpg" width="10" height="10"><a href="">Nosotros</a> </li>
<li><img src= "img/patita.jpg" width="10" height="10"><a href="">Contactanos</a> </li>
</ul>
</nav>
</section>
</header>
<!-- Contenido para el área principal:-->
<!-- Sección banner-->
<section id="banner">
<article id="comederos">
<p id="comedero1">¡Es un placer tenerte aquí!</p>
<p id="comedero2">¡Comederos en descuento!</p>
<span id="comedero3">COMEDEROS</span>
</article>
</section>
<!-- Sección productos Destsacados-->
<section id="productos-destacados">
<div id="patita2">
<img src= "img/patita2.png" width="50" height="50">
</div>
<h1>Productos destacados</h1>
<p> Comederos - Accesorios - Comida </p>
<article id="caja-destacados">
<div class="caja-destacados">
<img>
<p class="art1"></p> Juguete Churrasquito $150
<p class="precio1"></p>
</div>
articulo 1: Comedero para perro $250
articulo 1: Juguete Huesito $650
</article>
</section>
<!-- Sección Contáctanos-->
<section>
<h1>Contáctanos</h1>
<form action="/registro" method="POST">
<input type="text" name="usuario" placeholder="Nombre y apellido">
<input type="email" name="email" placeholder="Ingresá tu correo electrónico">
<input type="tel" name="telefono" placeholder="Teléfono">
<button type="reset">Resetear</button>
<button type="submit">Enviar</button>
</form>
</section>
<section id="suscribirme">
<img src="img/envio.png" width="40px" height="20px">
<div id="suscribirme-texto">Suscríbete para más novedades</div>
<div id="suscribirme-form">
<form action="/registro" method="POST">
<input type="email" name="email" placeholder="Ingresá tu correo electrónico">
<button type="submit">Suscribirme</button>
</form>
</div>
</section>
<!--Contenido para el pie de pagina - datos:-->
<footer>
<section id="pie-datos">
<article class="cajas-datos">
<div class="subcaja-datos">
<img src="img/i-localidad.png">
<div class="texto-datos">
<p class="texto-datos1">Localidad</p>
<p class="texto-datos2">Calle - Provincia</p>
</div>
</div>
<div class="subcaja-datos" >
<img src="img/i-phone.png">
<div class="texto-datos">
<p class="texto-datos1">Teléfono</p>
<p class="texto-datos2">Número de teléfono</p>
</div>
</div>
<div class="subcaja-datos" >
<img src="img/i-correo.png">
<div class="texto-datos">
<p class="texto-datos1">Correo Electrónico</p>
<p class="texto-datos2">Dirección de Correo</p>
</div>
</div>
</article>
<article id="pie-logo">
<img class="img-logo" src="img/gatito1.png" >
<span id="Front-pie">Front </span>
<span id="catydog-pie">Cat&Dog </span>
<img class="img-logo" src="img/perrito1.png" >
</article>
</section>
<section id="pie-bottom">
<p>Todos los derechos reservados Front End</p>
</section>
</footer>
<a href="https://www.figma.com/file/31NtnGFVE8XyUbfA8Esktw/Petshop?node-id=0%3A1" target = “_blank”>Ir a figma</a>
</body>
</html>