This commit is contained in:
2023-11-21 13:47:14 +01:00
parent 2f1043f0c7
commit 8237eee622
9 changed files with 209 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practica 2c</title>
</head>
<body>
<h1 style="color: red;">La rebelion de las máquinas</h1>
<h2 style="color:blue" >Capitulo 1</h2>
<p style="color:green">Introduccion</p>
<p>Joe era un niño escurridizo, se habia escapado del reformatorio con 11 años</p>
<p style="color:green">Desenlace</p>
<p>A pesar de su insistencia nunca pudo volver a...</p>
<h2 style="color:blue" >Capitulo 2</h2>
</body>
</html>

View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practica 2c</title>
</head>
<body>
<h1 style="color: red;">La rebelion de las máquinas</h1>
<h2 style="color:blue">Capitulo 1</h2>
<h3 style="color:green">Introduccion</h3>
<p>Joe era un niño escurridizo, se habia escapado del reformatorio con 11 años</p>
<h3 style=" color:green">Desenlace</h3>
<p>A pesar de su insistencia nunca pudo volver a...</p>
<h2 style=" color:blue">Capitulo 2</h2>
</body>
</html>

View File

@@ -0,0 +1,26 @@
<html>
<head>
<title>Ejercicio sobre tama&ntilde;os y formatos</title>
</head>
<body>
<p style="font-size: 40px;">Esto está a un tamaño de 40px</p>
<p style="font-size: small;">Esto está a un tamaño small</p>
<p style="font-size: medium;">Esto está a un tamaño medium</p>
<p style="font-size: large;">Esto está a un tamaño large</p>
<p style="font-size: xx-large;">Esto está a un tamaño xx-large</p>
<p style="font-size: xx-small;">Esto está a un tamaño xx-small</p>
<p style="font-size: 2%;">Esto está a un tamaño 2%</p>
<p style="font-size: 20%;">Esto está a un tamaño 20%</p>
<p style="font-size: 80%;">Esto está a un tamaño 80%</p>
<p style="font-size: 200%;">Esto está a un tamaño 200%</p>
<p style="font-size: 300%;">Esto está a un tamaño 300%</p>
<h2>Pruebas de formatos</h2>
Esto es normal
<sub>y esto es subíndice: sub </sub><br>
Esto es normal <sup>y esto es superíndice: sup </sup><br>
<br>
</body>
</html>