HTML - Formattazione del testo

  »   HTML  »   HTML Tutorial - Formatting html text

Nel caso che una pagina abbia tanti contenuti è necessario utilizzare più elementi di formattazione del testo in modo da poter modificare il testo in base alle proprie esigenze. Nel Tutorial - Attributi abbiamo parlato di aggiungere vari stili al contenuto degli elementi. Con queste etichette di formattazione è possibile rendere il testo sottolineato, in corsivo o in grassetto e molto altro.

As you put as many texts as you can in your page, you will need new elements of formatting your page as you want and need. In attribute's tutorial we have talked about ways of adding style to your wanted elements. This formatting tags can make elements bold italic underlined cut and not only

html<p>Example of <b>Grassetto</b></p>
<p>Example of <em>Testo enfatizzato</em></p>
<p>Example of <strong>Testo marcato</strong></p>
<p>Example of <i>Corsivo</i></p>
<p>Example of <sup>Apice</sup></p>
<p>Example of <sub>Pedice</sub></p>
<p>Example of <del>Testo barrato</del></p>
<p>Example of <code>Testo di codice Computer</code></p>

Demo

Example of Grassetto

Example of Testo enfatizzato

Example of Testo marcato

Example of Corsivo

Example of Apice

Example of Pedice

Example of Testo barrato

Example of Testo di codice Computer

HTML - Come utilizzare le etichette di formattazione

Queste etichette vanno utilizzate con moderazione. Se si vuole evidenziare ad esempio un intero paragrafo ad esempio è meglio utilizzare CSS. La decisione rimane comunque in mano al programmatore ma è sempre meglio seguire determinati standard.