-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 837 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>
<head>
<meta charset="utf-8" />
<title>Upload Disk Project</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0,user-scalable=no"
/>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="estilo.css" />
</head>
<body>
<header>
<h1>Upload Disk Project</h1>
</header>
<main>
<h2>Mis discos</h2>
<button onclick="Cargar()">Cargar nuevo disco</button>
<button onclick="Mostrar()">Mostrar discos</button>
<button onclick="Buscar()">Buscar disco</button>
<div id="info">
<h1>Discos</h1>
</div>
<script src="parcial.js"></script>
</main>
<footer>
<ul>
<li>Miguel Jiménez</li>
<li>2023</li>
</ul>
</footer>
</body>
</html>