Type Scale Simple
CSS
Easy
2 views
Problem Description
Set body font and make h1 bigger for meetcode page.
Output Format
Print the HTML+CSS code in one block.
Constraints
Use font-family and font-size.
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>
body { font-family: system-ui, Arial, sans-serif; font-size: 16px; line-height: 1.5; }
h1 { font-size: 32px; }
</style>
</head>
<body>
<h1>meetcode</h1>
<p>Simple typography.</p>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!