Give the html element a lang attribute with en as its value.
i don’t understand why this doesn’t work , whit the other courses does work, but not here
<!-- User Editable Region -->
<!DOCTYPE html> <html lang="en">
<!-- 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.3.1 Safari/605.1.15
Challenge Information:
Learn CSS Colors by Building a Set of Colored Markers - Step 1
Welcome to FCC, your HTML element needs a closing tag </element> and your code will pass, If this helped i would appreciate a like as i am new here, happy coding friend 
<html>lang="en"</html>
do you mean like this? because it doesn’t work
You added closing > bracket to your html opening tag early. Need to add in the end after “en”
@sassolinofritto
<html lang="en"></html> Like this dont forget html is the element lang is a attribute and en is the value, you will use this on all html docs so its good to remember it. Hope this helps.