-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 1.72 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/style.css">
<title>AluraGeek</title>
</head>
<body>
<!-- Encabezado -->
<header class="header">
<img src="./assets/Logo.svg" alt="logo alurageek" />
</header>
<!-- Contenedor principal -->
<main class="main-container">
<section>
<h1>Mis Productos:</h1>
<div data-product class="products-container"></div>
</section>
<!-- Sección de agregar productos -->
<section>
<h1>Agregar Producto:</h1>
<!-- Formulario para agregar productos -->
<form class="form-container" data-form>
<input data-name placeholder="Nombre del producto..." type="text">
<input data-price placeholder="Precio del producto..." type="number" min="0">
<input data-image placeholder="URL de la imagen..." type="text">
<span data-message class="mensajeError"></span>
<div class="button-container">
<button type="submit" class="button-submit">Enviar</button>
<button type="reset" class="button-clear">Limpiar</button>
</div>
</form>
</section>
</main>
<!-- Pie de página -->
<footer class="footer-container">
<div>
<img src="./assets/Logo.svg" />
</div>
<p>Desarrollado por Gabriel Velilla</p>
<small>Alura Latam 2024</small>
</footer>
<script type="module" src="js/controllers/main.js"></script>
</body>
</html>