Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS font-variant property</title> <style> p { font-variant: small-caps; } </style> </head> <body> <p>This is a paragraph.</p> </body> </html>