SEO Friendly Headings

SEO Friendly Headings

Hard HTML Accessibility & SEO 22 views
Explanation Complexity

Problem Statement

Create a topic page with clear title and headings: meetcode HTML Topic, Sections: Basics, Forms.

Input Format

No input.

Output Format

Print the HTML code.

Constraints

Use clear title and h1/h2.

Input / Output Format

Input Format
No input.
Output Format
Print the HTML code.
Constraints
Use clear title and h1/h2.

Examples

Input:
Output:
(HTML code)

Example Solution (Public)

HTML
<!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>

Official Solution Code

<!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>
Please login to submit solutions.
Editor
Output

                                        
Please login to submit solutions.