Learn HTML Forms by Building a Registration Form - Step 2

Tell us what’s happening:
Describe your issue in detail here.
how to add lang attribute with en
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/113.0.0.0 Safari/537.36

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

Link to the challenge:

Hello!
I can see there is a bit of confusion.
The opening html < is fine. there should not be a bracket behind it, though.
Attributes are entered in the form < link rel=“stylesheet”>
This example can be used to update the < html with the attribute lang substituting the required information for the step.
I hope this helps you. Happy coding! :slight_smile:

Howdy! Thanks for posting your question on the forum.
I wanted to point out to what @anon83736130 said.

You should add attributes inside an element’s opening tag. I can see you’ve typed ‘lang’ outside your html element’s opening tag, and then you’ve added an en element, which doesn’t seem to be a real one.

In order to complete this challenge, just type lang="en" in your html element’s opening tag.

Hope this helps!