This commit is contained in:
2023-11-28 13:42:24 +01:00
parent 2127e2e850
commit 024851ef69
20 changed files with 328 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contacto</title>
</head>
<body>
<a href="../index.html">Inicio</a>
<br>
<img src="../imagenes/contacto.jpg" alt="">
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practica 9</title>
</head>
<body>
<a href="./contacto/contacto.html">Contacto</a>
<a href="./novedades/novedades.html">Novedades</a>
<a href="./novedades/ultimas_n/ultimas_novedades.html">Últimas Novedades</a>
<br>
<img src="./imagenes/portada.jpg" alt="">
</body>
</html>

View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Novedades</title>
</head>
<body>
<a href="../index.html">Inicio</a>
<a href="./ultimas_n/ultimas_novedades.html">Últimas Novedades</a>
<br>
<img src="../imagenes/novedades.jpg" alt="">
</body>
</html>

View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Últimas Novedades</title>
</head>
<body>
<a href="../../index.html">Inicio</a>
<a href="../novedades.html">Novedades</a>
<br>
<img src="../../imagenes/ultimas_novedades.jpg" alt="">
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 KiB