Learn HTML Forms by Building a Registration Form - Step 2

Tell us what’s happening:
Im not sure what is wrong with the the code below but from everything I am finding it is corret. However it keeps telling me that I need a closing tag on my html. Which I have, I thought…

Your code so far


<!-- User Editable Region -->

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

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

Challenge: Learn HTML Forms by Building a Registration Form - Step 2

Link to the challenge:

So in html most elements have an opening tag and a closing tag. For example a paragraph element looks like this: <p></p> There are two parts. Your html example only has a singular opening tag, so you need to add </html> to the end.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.