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-weight: normal; } p.light { font-weight: plus léger; } p.epais { font-weight: bold; } p.thicker { font-weight: 900; } </style> </head> <body> <h1>La propriété font-weight</h1> <p class="normal">Ceci est un paragraphe.</p> <p class="light">Ceci est un paragraphe.</p> <p class="thick">Ceci est un paragraphe.</p> <p class="thicker">Ceci est un paragraphe.</p> </body> </html>