-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (40 loc) · 1.57 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
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Challenge AluraGeek</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="img/logo alura.png" alt="Logo de AluraGeek">
</header>
<main>
<section class="product-section">
<h3 class="title-of-section">Mis productos</h3>
<p id="without-products-message" class="without-products-message">No hay nada en la lista, intenta agregar
un
producto nuevo!</p>
<ul id="product-container" class="product-container" data-lista>
</ul>
</section>
<form class="form-add-container" data-formulario>
<h3 class="title-of-section">Agregar producto</h3>
<input type="text" placeholder="Nombre..." required data-nombre>
<input type="number" placeholder="Precio..." min="1" required data-precio>
<input type="url" placeholder="Imagen..." required data-imagen>
<div class="button-form-container">
<button class="button " type="submit">Enviar</button>
<button class="button clean-button" type="reset">Limpiar</button>
</div>
</form>
</main>
<footer>
<p>Desarrollado por Dulce Nevarez</p>
<p>Alura latam 2024</p>
</footer>
<script src="js/mostrarCards.js" type="module"></script>
<script src="https://unpkg.com/[email protected]/dist/boxicons.js"></script>
</body>
</html>