Tell us what’s happening:
Describe your issue in detail here.
Your code so far
<!DOCTYPE html>
<html lang="en">
Hi, i seem to have forgotten how to start it.
have I not closed something correctly?
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36
Challenge: Learn CSS Colors by Building a Set of Colored Markers - Step 1
Link to the challenge:
Hi @SuperMeaks ,
This is the hint you get :
Hint: Your html
element should have a closing tag.
<!DOCTYPE html>
<html lang="en"/>
not the correct closing tag but Ive tried with / and without it on both lines
<!DOCTYPE html>
<html><lang="en"/>
thought i had it with this
You forgot about closing tags.
HTML elements have an opening tag and a closing tag :
<element> ... </element>
<head> <!-- opening tag -->
</head> <!-- closing tag -->
<body>
</body>
ahahaha rookie mistake there.
<!DOCTYPE html>
<html lang="en"></html>
I was putting the / in the wrong place for a start haha. Thanks once again for your assistance @spark07
1 Like
system
Closed
7
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.