Learn HTML Forms by Building a Registration Form - Step 2

I got the syntax wrong somewhere…

Your html element should have an opening tag, and lang attribute with value of en.


Your code so far


<!-- User Editable Region -->

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

<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14695.187.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

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

Link to the challenge:

1 Like

I tried changing it to …

<html> lang="en"</html>

and got the same result

The first post you had is the closest. The issue is you are missing the > at the end of the opening html tag

<html lang="en">

Thanks for responding…

I tried this

<html>lang="en"</html>

and got the same result. Your html element should have an opening tag, and lang attribute with value of en .

Look at my previous post with the example. You are headed in the wrong direction

Thanks ! I appreciate your help …