Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> div { bordure: 1px solide gris; padding: 8px; } h1 { text-align: center; text-transform: uppercase; couleur: #4CAF50; } p { text-indent: 50px; text-align: justifier; espacement-des-lettres: 3px; } a { text-decoration: none; couleur: #008CBA; } </style> </head> <body> <div> <h1>formatage du texte</h1> <p>This text is styled with some of the text formatting properties. The heading uses the text-align, text-transform, and color properties. Le paragraphe est en retrait, aligné, et l'espacement entre les caractères est spécifié. Le soulignement est supprimé de cette couleur <a target="_blank" href="tryitaeac.html?filename=trycss_text">"Essayez-le vous-même"</a>lien.</p> </div> </body> </html>