Tell us what’s happening:
Step 3
Now, improve the structure of your HTML document to ensure your page is encoded correctly and looks good on all screen sizes.
Add a language attribute to the html element and set it to en. Then, inside the head element add:
a tag
a tag
Now add the body element below the head section. This is where all of your visible page content will go.
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 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Mobile Safari/537.36
Challenge Information:
Build a Bookstore Page - Step 3