Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> h1 { font-size: 24pt; } h3 { font-size: 26px; } p { font-size: 1em; } a { font-size: 100%; } span { font-size: x-small; } </style> </head> <body> <span>Ce span est écrit avec la valeur x-small.</span> <p>Ce paragraphe est écrit avec 1em font-size.</p> <a href="https://fr.w3docs.com/">Ce hyperlien est écrit avec 100% font-size.</a> <h3>Nous avons utilisée la taille de police x-small pour ce titre.</h3> <h1>Nous avons définie la taille de police à 24pt pour ce titre.</h1> </body> </html>