Small Caps Text
CSS
Medium
2 views
Problem Description
Show a heading in small caps style using font-variant.
Output Format
Print the HTML+CSS code in one block.
Constraints
Use font-variant: small-caps.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode</title>
<style>
h2 { font-variant: small-caps; letter-spacing: 0.03em; font-family: system-ui, Arial, sans-serif; }
</style>
</head>
<body>
<h2>meetcode topics</h2>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!