Learn CSS Colors by Building a Set of Colored Markers - Step 1

Tell us what’s happening:

I have added a doctype declaration and land=“en” with an opening and closing html element but the code isnt passing. Not sure what’s up

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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15

Challenge Information:

Learn CSS Colors by Building a Set of Colored Markers - Step 1

Hi there and welcome to our community!

HTML tags always need a pair of angle brackets (e.g. <element>).
Your opening html tag is missing an angle bracket.

hey dude thank you and sorry for the bother

added angular bracket on opening html tag and still not passing

Please share your updated code

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

hi there!
you have added the bracket before the lang attribute and its value.

HTML attributes always need to go inside the opening element tag
EXAMPLE: <element attribute="value">