-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (44 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Alura Geek</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<div class="logo">
<span>AluraGeek 🤓</span>
</div>
</header>
</div>
<main>
<div class="products">
<h1>MIS PRODUCTOS:</h1>
<div class="product-list" id="product-list">
<!-- Products will be dynamically added here -->
</div>
</div>
<div class="add-product">
<h2>AGREGAR PRODUCTO:</h2>
<form id="product-form">
<input type="text" id="product-name" placeholder="nombre..." required>
<input type="text" id="product-price" placeholder="precio..." required>
<input type="text" id="product-image" placeholder="nombre de imagen.jpeg" required>
<button type="submit">Enviar</button>
<button type="reset">Limpiar</button>
</form>
</div>
</main>
<footer>
<div class="logo">
<span>AluraGeek 🤓<br>
<h5>Desarrollado por Jesus A. Gutiérrez M.</h5>
<h5>© AluraLatam 2024</h5></span>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>