Build a Bookstore Page - Step 3

Tell us what’s happening:

creo que no esta funcionando bien la pagina estoy haciendo exactamente lo que me pide el paso 3 que es agregar dentro del head elemento,un meta elemento con su atributo charset con un valor de “UTF-8” y me dice que lo agregue de nuevo y no puedo seguir al siguiente paso

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
<body>

<!-- User Editable Region -->

<meta charset="UTF-8">  
<title>XYZ Bookstore Page</title>
<body>
</head>

<!-- 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/146.0.0.0 Safari/537.36

Challenge Information:

Build a Bookstore Page - Step 3

Welcome to the forum @barretojohan847

Try placing the body element after the head element.

Make sure the second body tag is a closing tag.

Happy coding

Tell us what’s happening:

creo que no esta funcionando bien la pagina estoy haciendo exactamente lo que me pide el paso 3 que es agregar dentro del head elemento,un meta elemento con su atributo charset con un valor de “UTF-8” y me dice que lo agregue de nuevo y no puedo seguir al siguiente paso

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
<body>

<!-- User Editable Region -->

<meta charset="UTF-8">  
<title>XYZ Bookstore Page</title>
<body>
</head>

<!-- 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/146.0.0.0 Safari/537.36

Challenge Information:

Build a Bookstore Page - Step 3

https://www.freecodecamp.org/learn/responsive-web-design-v9/workshop-bookstore-page/step-3 hermano literalmente ya hice eso igual me dice que el problema no es body elemento,el problema es que el codigo debe incluir meta elemento,charset atributo y UTF-8 como valor del atributo y ya lo tiene

Hi @barretojohan847

Do not nest the body element inside the head element.

Place the body element after the head element.

Happy coding