Main with One H1
HTML
Easy
2 views
Problem Description
Write a page where main contains exactly one H1 and the rest are H2.
Output Format
Print the HTML code.
Constraints
Keep heading levels correct.
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>
</head>
<body>
<main>
<h1>meetcode</h1>
<h2>Topics</h2>
<h2>Latest</h2>
</main>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!