4 - Introducción al CSS
Estructura propiedad: valor;
<b>Negrita;</b>
<i>Cursiva;</i>
<b><i>Negrita y cursiva</i></b><br>
<b style="font-style: italic;">Negrita y cursiva;</b>
<i style="font-weight: bold;">Cursiva y negrita;</i>
<span
style="font-style: italic; font-weight: bold;">
Cursiva y negrita</span>
<b>Negrita</b><br>
<i>Cursiva</i><br>
<b style="font-weight: normal;">Esto no es negrita</b><br>
<i style="font-style: normal;">Esto no es cursiva</i>
<h1 style="text-decoration: overline;">Encabezado 1</h1>
<h2 style="text-decoration: line-through;">Encabezado 2</h2>
<h3 style="text-decoration: underline;">Encabezado 3</h3>
<u style="text-decoration: none;">Esto no es subrayado</u>
<div style="font-size: xx-small;">Texto muy muy chico</div>
<div style="font-size: x-small;">Texto muy chico</div>
<div style="font-size: small;">Texto chico</div>
<div style="font-size: medium;">Texto medio (predeterminado)</div>
<div style="font-size: large;">Texto grande</div>
<div style="font-size: x-large;">Texto muy grande</div>
<div style="font-size: xx-large;">Texto muy muy grande</div>
<!-- Similar al comportamiento de las etiquetas small y big--> <div style="font-size: smaller;">Más chico</div> <div style="font-size: larger;">Más grande</div> <!-- Unidades para medir tamaño de fuente--> <div style="font-size: 24px">Texto de 24px</div> <div style="font-size: 24pt">Texto de 24pt</div> <div style="font-size: 240%">Texto de 240%</div> <div style="font-size: 1.24cm">Texto de 1.24cm</div>
<div style="color: red;">
Rojo
</div>
<div style="color: green;">
Verde
</div>
<div style="color: blue;">
Azul
</div>
<div style="color: violet;">
Violeta
</div>
<div style="color: black;">
Negro
</div>
Texto normal, <span style="background: red;"> texto sobre fondo rojo </span>.
Se puede aplicar sobre la etiqueta body para cambiar el fondo de toda la página.