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> span.small { taille-de-police: plus petit; } </style> </head> <body> <h1>Utilisez CSS pour définir un texte plus petit</h1> <p>Ceci est un texte normal.</p> <p><span class="small">Ceci est un texte plus petit.</span></p> </body> </html>