Build a Bookstore Page - Step 3

Tell us what’s happening:

It shows an error stating “Your code should include a <meta charset="UTF-8"> element.”

Even though I have included it under the head element, the error persists.

Your code so far

<!DOCTYPE html>
<html lang="en">
 <head>
<!-- User Editable Region -->
  <body>
   <meta charset="UTF-8">
   <title>XYZ Bookstore Page</title>
 </head>
 </body>
<!-- User Editable Region -->
</html>

Your browser information:

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

Challenge Information:

Build a Bookstore Page - Step 3

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-bookstore-page/69134d14150d51f8066a3246.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @fozail2636,

You have placed the body element inside the head element.

Please review the HTML Boilerplate theory lecture for an example of a valid web page structure.

Happy coding