-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEjercicio7.HTML
More file actions
21 lines (21 loc) · 935 Bytes
/
Ejercicio7.HTML
File metadata and controls
21 lines (21 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!--Diseña una página web en la que aparezcan tres párrafos bien diferenciados. El primero
aparezca centrado en la página con la etiqueta CENTER; el segundo, aparezca justificado, y
con el color, tamaño y fuente que tú elijas, pero utilizando diferentes estilos de texto; el
tercero, idem anterior, pero justificado a la derecha.-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi página web</title>
</head>
<body style="background-color: yellow;">
<p style="text-align: center;">Hola mundo</p>
<p style="text-align: justify; color: rgb(247, 16, 135); font-size: 35px; font-family: Verdana, Geneva, Tahoma, sans-serif;">
<b>Aprendiendo html</b>
</p>
<p style="text-align: right; color: blueviolet; font-family: serif; font-size: 56px;">
<i>Esto es una prueba</i>
</p>
</body>
</html>