Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .font-xxsmall { color: grey; font-size: xx-small; } .font-xsmall { color: grey; font-size: x-small; } .font-small { color: grey; font-size: small; } .fontSize-medium { color: grey; font-size: medium; } .font-large { color: grey; font-size: large; } .font-xlarge { color: grey; font-size: x-large; } .font-xxlarge { color: grey; font-size: xx-large; } </style> </head> <body> <h1>Font-size property</h1> <div class="font-xxsmall">Example with font-size xx-small property</div> <div class="font-xsmall">Example with font-size x-small property</div> <div class="font-small">Example with font-size small property</div> <div class="font-medium">Example with font-size medium property</div> <div class="font-large">Example with font-size large property</div> <div class="font-xlarge">Example with font-size x-large property</div> <div class="font-xxlarge">Example with font-size xx-large property</div> </body> </html>