Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .smallcaps { font-variant: small-caps; } </style> </head> <body> <h2>Font-variant property example</h2> <p>Here we used a normal text as you can see.</p> <p class="smallcaps">But We Used A Text With Small-Caps Here.</p> </body> </html>