-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEjercicio7.html
34 lines (29 loc) · 1.18 KB
/
Ejercicio7.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="es"><head>
<meta charset="UTF-8">
<title>Ejercicio_7</title>
<meta name="author" content="Daniel Ferreira Gómez">
<meta name="description" content="Ejercicio_7">
<meta name="keywords" content="php, mysql, mysqli, videojuegos">
<meta name="viewport" content="width=device-width, initial scale=1.0">
<link rel="stylesheet" type="text/css" href="Ejercicio7.css">
</head>
<body>
<header>
<h1>Ejercicio 7</h1>
</header>
<section>
<h2>Aplicación de distribución de videojuegos</h2>
<a title="Registrate para empezar" href="Registro.html">Registrarse</a>
<a title="Tienda" href="Tienda.php">Comprar Videojuego</a>
<a title="Biblioteca" href="Biblioteca.php">Biblioteca</a>
<a title="Ver todas las reseñás" href="Reseñas.php">Ver Reseñas</a>
<form action="#" method="post" enctype="multipart/form-data">
<label for="file">Importar datos de un csv</label>
<input id="file" type="file" name="archivo">
<input type="submit" value="Enviar">
</form>
</section>
<main>
</main>
</body></html>