miércoles, 11 de mayo de 2016

Formatos de Texto

En el anterior post, vimos cómo crear una página web y escribir en su interior. Pero hoy entraremos en profundidad con el texto y, aprenderemos a usar las etiquetas para cambiar su formato.


Etiquetas

Descripción

<b>Define un texto en negrita
<big>Define un texto grande
<em>Define un texto enfatizado
<i>Define un texto en itálica
<small>Define un texto pequeño
<strong>Define un texto fuerte
<sub>Define un texto subíndice
<sup>Define un texto superíndice
<ins>Define un texto subrayado
<del>Define un texto tachado
<tt>Define un texto de teletipo
<s>Define un texto tachado. 
<strike>Define un texto tachado. 
<u>Define un texto subrayado. 



<html>
<head>
<title>Formato de Texto</title>
</head>
<body>
<b>Texto en negrita</b><br>
<big>Texto grande</big><br>
<em>Texto enfatizado</em><br>
<i>Texto en itálica</i><br>
<small>Texto pequeño</small><br>
<strong>Texto "fuerte"</strong><br>
<sub>Texto subíndice</sub><br>
<sup>Texto superíndice</sup><br>
<ins>Texto subrayado</ins><br>
<del>Texto tachado con del</del><br>
<s>Texto tachado con s</s><br>
<strike>Texto tachado con strike</strike><br>
<tt>Texto de teletipo</tt><br>
<u>Texto subrayado</u><br>
</body>
</html>

No hay comentarios:

Publicar un comentario