-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CRUD de Música</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="index.css">
</head>
<body>
<main class="container">
<section class="crud">
<h1 class="crud_title">CRUD de Música</h1>
<form id="formRegister" class="crud_form">
<input type="text" placeholder="Artista/Banda" id="nameInput" class="form_input">
<input type="text" placeholder="Disco" id="discoInput" class="form_input">
<input type="text" placeholder="Fecha" id="fechaInput" class="form_input">
<button type="submit" id="submitButton" class="button-primary">Add</button>
</form>
<table class="crud_table">
<thead>
<tr>
<th class="table_header">Artista</th>
<th class="table_header">Disco</th>
<th class="table_header">Fecha</th>
</tr>
</thead>
<tbody id="tableBody" class="table_body">
</tbody>
</section>
<footer>
<p>Contacto: <a href="mailto:info@mi-email.com">borboaandy@gmail.com</a></p>
<p>GitHub: <a href="https://github.com/tu-usuario" target="_blank">https://github.com/AndyBorboaRocks</a></p>
<p>© 2024 Todos los derechos reservados.</p>
</footer>
</main>
<script src="index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>