Use Lang for SEO
HTML
Easy
2 views
Problem Description
Set html lang and add a clear title for a meetcode page.
Output Format
Print the HTML code.
Constraints
Use lang and title.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>\
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode HTML practice</title>
</head>
<body>
<h1>HTML practice</h1>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!