Avoid Div Soup
HTML
Hard
3 views
Problem Description
Rebuild a simple layout using semantic tags instead of many divs: header, main, footer.
Output Format
Print the HTML code.
Constraints
Prefer semantic tags.
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>
<header>
<h1>meetcode</h1>
</header>
<main>
<section>
<h2>Topics</h2>
</section>
</main>
<footer>
<p>meetcode</p>
</footer>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!