Section for Features
HTML
Easy
3 views
Problem Description
Create two sections inside main: 'Practice' and 'Notes' for meetcode.
Output Format
Print the HTML code.
Constraints
Use and headings.
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>
<section>
<h2>Practice</h2>
<p>Solve small questions.</p>
</section>
<section>
<h2>Notes</h2>
<p>Read quick explanations.</p>
</section>
</main>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!