-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-product.html
192 lines (192 loc) · 8.3 KB
/
single-product.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<link href="https://fonts.googleapis.com" rel="preconnect"/>
<link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect"/>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap" rel="stylesheet"/>
<link href="./css/reset.css" rel="stylesheet"/>
<link href="./css/style.css" rel="stylesheet"/>
<link href="./css/login.css" rel="stylesheet"/>
<link href="./css/single-product.css" rel="stylesheet"/>
<title>
AluraGeek | E-commerce
</title>
</head>
<body>
<header>
<div class="container nav-wrap">
<a class="logo" href="./index.html">
<img alt="logo alurageek" src="./img/logo.png"/>
</a>
<div class="input-group">
<input class="buscar sobre" id="input-buscar" placeholder="¿Qué deseas buscar?" type="text"/>
<button class="search-button sobre" id="boton-buscar">
<i class="fa fa-search">
</i>
</button>
</div>
<div class="nav-login">
<a class="login" href="./login.html">
Ingresar
</a>
</div>
</div>
</header>
<main>
<div class="product-info">
<img alt="mugs cabeza amplio" src="./img/star-wars/logo1-1.png"/>
<div class="product-description">
<p class="description-title">
Produto XYZ
</p>
<p class="description-price">
$60,00
</p>
<p class="descriprion-description">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
</div>
<div class="container product-gallery">
<section class="product-category">
<div class="category-header">
<h2 class="category-title">
Productos similares
</h2>
</div>
<div class="product-group">
<div class="product">
<img alt="control-x-box" class="product-img" src="./img/consolas/logo1.png"/>
<p class="product-title">
Control XYZ
</p>
<p class="product-price">
$60,00
</p>
<a href="#">
Ver producto
</a>
</div>
<div class="product">
<img alt="darthVader-cabeza" class="product-img" src="./img/star-wars/logo2.png"/>
<p class="product-title">
Producto XYZ
</p>
<p class="product-price">
$60,00
</p>
<a href="#">
Ver producto
</a>
</div>
<div class="product">
<img alt="yoda" class="product-img" src="./img/star-wars/logo3.png"/>
<p class="product-title">
Producto XYZ
</p>
<p class="product-price">
$60,00
</p>
<a href="#">
Ver producto
</a>
</div>
<div class="product">
<img alt="stromtrooper" class="product-img" src="./img/star-wars/logo4.png"/>
<p class="product-title">
Producto XYZ
</p>
<p class="product-price">
$60,00
</p>
<a href="#">
Ver producto
</a>
</div>
<div class="product">
<img alt="grogu" class="product-img" src="./img/star-wars/logo5.png"/>
<p class="product-title">
Producto XYZ
</p>
<p class="product-price">
$60,00
</p>
<a href="#">
Ver producto
</a>
</div>
<div class="product">
<img alt="palpatine" class="product-img" src="./img/star-wars/logo6.png"/>
<p class="product-title">
Producto XYZ
</p>
<p class="product-price">
$60,00
</p>
<a href="#">
Ver producto
</a>
</div>
</div>
</section>
</div>
</main>
<footer>
<div class="footer-wrap">
<img alt="logo alurageek" class="logo-footer" src="./img/logo.png"/>
<ul class="footer-nav">
<li>
Quiénes somos
</li>
<li>
Política de privacidad
</li>
<li>
Programa de fidelidad
</li>
<li>
Nuestras tiendas
</li>
<li>
Quiero ser franquiciado
</li>
<li>
Anuncie aquí
</li>
</ul>
<div class="form-wrap">
<h3>
Hable con nosotros
</h3>
<label class="label" for="name" id="nameLabel">
Nombre:
</label>
<input id="name" name="name" type="text"/>
<label class="label" for="message" id="messageLabel">
Escribe tu mensaje:
</label>
<textarea cols="30" id="message" name="" rows="10">
</textarea>
<button class="contact_form-button">
Enviar mensaje
</button>
</div>
</div>
<div class="footer-footer">
<p>
Desarrollado por: Giovanny Vargas
</p>
<p>
2022
</p>
</div>
</footer>
<script crossorigin="anonymous" src="https://kit.fontawesome.com/a85d4c66d6.js">
</script>
<script src="./js/script.js">
</script>
</body>
</html>