-
Notifications
You must be signed in to change notification settings - Fork 0
/
add-products.html
192 lines (183 loc) · 6.07 KB
/
add-products.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="assets/images/page-icon.png"
type="image/x-icon"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/general.css" />
<link rel="stylesheet" href="css/nav.css" />
<link rel="stylesheet" href="css/nav/nav-logo.css" />
<link rel="stylesheet" href="css/nav/nav-login-btn.css" />
<link rel="stylesheet" href="css/nav/nav-icon-search.css" />
<link rel="stylesheet" href="css/nav/nav-search.css" />
<link rel="stylesheet" href="css/nav/nav-search-input.css" />
<link rel="stylesheet" href="css/nav/nav-search-btn.css" />
<link rel="stylesheet" href="css/nav/nav-input-hide.css" />
<link rel="stylesheet" href="css/add-products.css" />
<link rel="stylesheet" href="css/add-products/add-products-title.css" />
<link rel="stylesheet" href="css/add-products/add-products-form.css" />
<link rel="stylesheet" href="css/add-products/add-products-icon.css" />
<link rel="stylesheet" href="css/add-products/add-products-img-add.css" />
<link rel="stylesheet" href="css/add-products/add-products-text.css" />
<link rel="stylesheet" href="css/add-products/add-products-file.css" />
<link rel="stylesheet" href="css/add-products/add-products-input.css" />
<link
rel="stylesheet"
href="css/add-products/add-products-description.css"
/>
<link
rel="stylesheet"
href="css/add-products/add-products-submit-btn.css"
/>
<link rel="stylesheet" href="css/about.css" />
<link rel="stylesheet" href="css/about/about-text.css" />
<link rel="stylesheet" href="css/about/about-logo.css" />
<link rel="stylesheet" href="css/about/about-link.css" />
<link rel="stylesheet" href="css/about/about-contact.css" />
<link rel="stylesheet" href="css/about/about-contact-title.css" />
<link rel="stylesheet" href="css/about/about-contact-form.css" />
<link rel="stylesheet" href="css/about/about-contact-form-name.css" />
<link rel="stylesheet" href="css/about/about-contact-form-message.css" />
<link rel="stylesheet" href="css/about/about-contact-form-btn.css" />
<link rel="stylesheet" href="css/footer.css" />
<title>Desafío E-Commerce Alura Geek </title>
</head>
<body>
<header class="nav__container">
<a href="index.html">
<img
src="assets/images/Logo.svg"
alt="alura geek Logo"
class="nav__icon__logo"
/>
</a>
<a href="login.html" class="nav__login__btn"
><button class="nav__login__btn">Login</button></a
>
<div class="nav__search input--hide">
<input
type="search"
name="search"
id="search"
class="nav__search__input"
placeholder="¿Qué deseas buscar?"
/>
<button class="nav__search__btn">
<img src="assets/images/search-icon.svg" alt="buscar" />
</button>
</div>
<label for="search"
><img
src="assets/images/search-icon.svg"
alt="icono busqueda"
class="nav__icon__search"
/></label>
</header>
<main>
<article class="add__product">
<h1 class="add__product__title">Agregar nuevo producto</h1>
<form action="" class="add__product__form">
<div class="add__product__file">
<label for="img__add" class="add__product_text"
><img
src="assets/images/addicon.svg"
alt="añadir icono"
class="add__icon"
/>
Agregar una imagen para el producto</label
>
<input
type="file"
id="img__add"
class="img__add"
accept=".jpg,.png"
/>
</div>
<input
type="text"
class="add__product__input"
placeholder="Nombre del producto"
/>
<input
type="number"
class="add__product__input"
placeholder="Precio del Producto"
/>
<textarea
name="product__description"
id="product__description"
cols="30"
rows="10"
placeholder="Descripción del producto"
></textarea>
<input
type="submit"
class="add__product__submitbtn"
value="Agregar producto"
/>
</form>
</article>
</main>
<article class="about">
<section class="about__text">
<img
src="assets/images/Logo.svg"
alt="alura geek logo"
class="about__logo"
/>
<a href="#" class="about__link">Quienes somos</a>
<a href="#" class="about__link">Política de privacidad</a>
<a href="#" class="about__link">Programa de fidelidad</a>
<a href="#" class="about__link">Nuestras tiendas</a>
<a href="#" class="about__link">Quiero ser franquiciado</a>
<a href="#" class="about__link">Anuncie aquí</a>
</section>
<section class="about__contact">
<h2 class="about__contact__title">Hable con nosotros</h2>
<img class="imagen-formulario" src="./assets/images/mail_contacts.png">
<form action="" class="about__contact__form" id="contact__form">
<input
type="text"
name="Nombre"
placeholder="Ingrese su nombre"
class="about__contact__form__name"
/>
<textarea
name="mensaje"
id="message"
cols="30"
rows="10"
placeholder="Escribe tu mensaje"
class="about__contact__form__message"
></textarea>
<input
type="submit"
value="Enviar Mensaje"
class="about__contact__form__btn"
/>
</form>
</section>
</article>
<footer class="fondo-footer">
<div class="container-footer">
<p class="footer-text"></p>
<p> © 2022
<img alt="foto" src="./assets/images/icono2.png" width="25" height="25">
<a href="https://github.com/mirianGonzalez"> Mirian Gonzalez</a>
| Semana 7 y 8 Challenge Oracle ONE - Front End</p>
</div>
</footer>
<script src="test.js"></script>
</body>
</html>