-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
34 lines (29 loc) · 932 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mi wishlist de libros</title>
</head>
<body>
<h1>Mi wishlist de libros</h1>
<div>
<h2>Agrega tus libros:</h2>
<label for="titulo">Título:</label>
<input type="text" id="titulo">
<label for="autor">Autor:</label>
<input type="text" id="autor">
<label for="genero">Genero:</label>
<input type="text" id="genero">
<button id="agregarlibro">Agregar Libro</button>
</div>
<div>
<h2>Estos son los libros en tu wishlist:</h2>
<ul id="wishlist">
<!-- Aca se va mostrar la lista de los libros que hay en la wishlist -->
</ul>
</div>
<button id="finalizar">Termine de agregar tus libros</button>
<script src="./codigo.js"></script>
</body>
</html>