imported pages to database

This commit is contained in:
Pau 2024-10-22 19:40:28 +02:00
parent 377ca66aef
commit 8076c3e042
3 changed files with 29 additions and 0 deletions

11
threads04/1.html Normal file
View File

@ -0,0 +1,11 @@
<html>
<head>
<title>Página 1</title>
</head>
<BODY>
<a href="2.html">Ir a página 2</a>
<br>
<a href="index.html">Volver</a>
</BODY>
</html>

10
threads04/2.html Normal file
View File

@ -0,0 +1,10 @@
<html>
<head>
<title>Página 2</title>
</head>
<BODY>
<a href="1.html">Ir a página 1</a>
<br>
<a href="index.html">Volver</a>
</BODY>
</html>

8
threads04/index.html Normal file
View File

@ -0,0 +1,8 @@
<html>
<head>
<title>Inicio</title>
</head>
<BODY>
<a href="1.html">Ir a página 1</a>
</BODY>
</html>