-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 1.21 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AluraGeek</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>AluraGeek | G6 ONE</h1>
</header>
<main>
<div id="list-of-products">
<h2>Productos disponibles</h2>
<p id="no-products">No hay products disponibles en este momento.</p>
<div id="products-grid"></div>
</div>
<div id="new-product">
<h2>Agregar nuevo producto</h2>
<form id="new-product-form">
<input type="text" id="name" placeholder="Ingrese nombre del producto" required />
<input type="number" id="price" placeholder="Ingrese precio" required />
<input type="text" id="imagenUrl" placeholder="Ingrese URL de la imagen" required />
<button type="submit">Agregar producto</button>
<button id="delete-fields">Borrar</button>
</form>
</div>
</main>
<footer>
<p>Desarrollado por Alvaro Crespi Liut</p>
</footer>
<script defer src="script.js"></script>
</body>
</html>