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> p.normal { font-variant: normal; } p.small { font-variant: petites-majuscules; } </style> </head> <body> <h1>La propriété font-variant</h1> <p class="normal">Mon nom est Jane Doe.</p> <p class="small">Mon nom est Jane Doe.</p> </body> </html>