Learn HTML Forms by Building a Registration Form - Step 2

Tell us what’s happening:
Describe your issue in detail here.
Keeps telling me to close the tags or that they are not in the correct order

Your code so far


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

Your mobile information:

iPhone - iOS15.6

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

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

Hello there @mfd7y2gd6b welcome to fcc forum.


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

Your opening and closing tag is correct but you need to type lang attribute correctly. lang always start with small letters.

I hope my reply will help you. Let me know, thanks.

1 Like

To add to mailforworkon’s post all elements and attributes in html are always lower case.
Sentence case should really be used only in elements where you have text that is not code. Such as a title or paragraph.
Using this rule should help.

I too have made this mistake a few times.

Also another good clue is that the text in the instructions also gives you the correct case for the tag to use.

2 Likes

Hi!
You should change the CAPS of the “L” in your “Lang” attribute to lower-case “l”. It should read:
“lang”, instead of Lang. Please use lowercase lettering for attributes and their values unless stated otherwise, especially for texts going forward.

This should do the trick.
Lets grow together :muscle: :fire: :zap:
Happy Coding!

2 Likes

It Works :pray:t3: Thank you

1 Like