Build a Bookstore Page - Step 3

Tell us what’s happening:

When I hit check my code it tells me it should include a viewport meta element, and I swear I have the correct code in there, character for character. I’m very confused and do not know what I’m doing wrong. Do I have it in the wrong place?

Your code so far

<!DOCTYPE html>

<!-- User Editable Region -->

<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
  <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/126.0.0.0 Safari/537.36

Challenge Information:

Build a Bookstore Page - Step 3

add a space after the comma

1 Like

I have given that a try, it says the same. Not sure what’s causing this

please post your updated code

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

not sure what it was but i reset the lesson and did the exact same code, and it worked. sorry for the waste of time, thanks for the help

If you look at the code above, pay attention to the color highlighting.

One of your tags is not orange, which indicates a syntax error.

1 Like