Create your website with HTML and CSS
Difficulty: Beginner ● Progress: 0 / 0 modules completed
Text styling
As for text, it is possible to add all the styles found in a classic document:
- Bold
- Italic
- Underlined
- Strikethrough
Let's take the following text as an example:
<p>
Je suis le texte d'un paragraphe classique,
<span class="bold">avec des passages importants</span>,
quelques termes techniques comme <span class="italic">html et css</span>
et des <span class="underline">informations à ne pas louper</span>
ou celles <span class="deleted">à supprimer</span>
</p>
You need a free account to read this module