Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> span { flottant: gauche; largeur: 0.7em; taille de police: 400%; font-family: algerian, courier; hauteur-de-ligne: 80%; } </style> </head> <body> <h2>Stylisez la première lettre d'un paragraphe et laissez-la flotter à gauche</h2> <p> <span>H</span>ere, the first letter of this text is embedded in a span element. The span element has a width that is 0.7 times the size of the current font. The font-size of the span element is 400% (quite large) and the line-height is 80%. The font of the letter in the span will be in "Algerian". </p> </body> </html>