Build a Bookstore Page - Step 3

Tell us what’s happening:

can someone help me please, says I need to insert viewport meta element

Your code so far

<!DOCTYPE html>

<!-- User Editable Region -->

<html>
  <html lang="en">
<head>
  <meta charset="utf-8"/>
  <meta name="viewport" content="width=device-width,initial-scale=1.0"/>
  </meta>
  <title>XYZ Bookstore Page</title>
</head>
<body></body>
</html>

<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0

Challenge Information:

Build a Bookstore Page - Step 3

Add a language attribute to the html element

You have 2 html elements. Well, you have two opening tags:

<html>
  <html lang="en">

and one closing tag:

</html>
1 Like

Thank you for pointing that out.

1 Like