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

Tell us what’s happening:
Describe your issue in detail here.
I have closed of the hmtl element but i am still getting a error ?
could some one help ?

Your code so far

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53

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

Link to the challenge:

Hello!

A closing tag is the same tag name that opens the element but with a forward slash preceding it, like this: </theTagName>.

For instance:

<p><!-- opening tag -->
<!-- content -->
</p><!-- closing tag -->

<div><!-- opening tag -->
<!-- content -->
</div><!-- closing tag -->

<a href="https://freecodecamp.org/"><!-- opening tag -->
<!-- content -->
</a><!-- closing tag -->

Can you find out what you’re missing?

PD: everything between <!-- and --> is a comment (is ignored)

1 Like

thank you . after overlooking your response i noticed my (html) element was open and i did not close it .

1 Like