-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEjercicio9.HTML
More file actions
20 lines (20 loc) · 814 Bytes
/
Ejercicio9.HTML
File metadata and controls
20 lines (20 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!--Modifica el ejercicio 7, utilizando el caracter  . Comenta las diferencias
encontradas.-->
<!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>
<!--Se puede observar que hay mayor espaciado entre palabras-->