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

Tell us what’s happening:
Hey there; I am not sure, why this is wrong.

Add a DOCTYPE html declaration at the top of the document, and an html element after that. Give the html element a lang attribute with en as its value.

Your code so far

<html lang="en"

<!-- User Editable Region -->

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

<!-- 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/110.0.0.0 Safari/537.36 Edg/110.0.1587.69

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

Link to the challenge:

Hi!
Welcome to the forum!

Your html element’s opening tag is missing it’s closing bracket. Close it and your code should pass.

<html lang="en" </html>

1 Like

Thank you!

Inputted the closing bracket and it passed, thank you so much!