SEO Friendly Headings
HTML
Hard
2 views
Problem Description
Create a topic page with clear title and headings: meetcode HTML Topic, Sections: Basics, Forms.
Output Format
Print the HTML code.
Constraints
Use clear title and h1/h2.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>\
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>HTML Topic - meetcode</title>
</head>
<body>
<h1>HTML Topic</h1>
<h2>Basics</h2>
<h2>Forms</h2>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!