Build a Final Exams Table - Step 1

Tell us what’s happening:

I’m not sure what i’m doing wrong. I’m told to add a doctype element, a html lang element and then it says “inside the html element, add head element” I’m sure i have done all of these but still an error message comes up “you should have a closing html tag” isn’t my code so far correct?

Your code so far


<!-- User Editable Region -->

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




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

Challenge Information:

Build a Final Exams Table - Step 1

Welcome to the forum :wave:

You have a closing </head> tag, but do you have a closing html tag?

For an element to be “inside” it needs to be between opening and closing tags:

<p>
Some text
</p>

This text is within a p element

thank you so much, yes that was the issue i didn’t add a closing html element

1 Like