Step 1
As you’ve seen in the previous projects, webpages should start with a DOCTYPE html declaration, followed by an html element.
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.
Check Your Code (Ctrl + Enter)
Sorry, your code does not pass. Try again.
Your html element should have an opening tag with a lang attribute of 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/126.0.0.0 Safari/537.36
Challenge Information:
Learn CSS Colors by Building a Set of Colored Markers - Step 1