You’ve not closed your img element correctly on line 7. Remember that the img element is a self-closing element. The syntax should be:
<img src="image URL" />
The text My Pics is not surrounded by any HTML tags. Is it a heading, a paragraph, a link?
You have a closing </a> tag on line 8 but no opening <a> tag anywhere
You have closed the Interestsli element on line 13 and then closed it again on line 20. Remember if you’re nesting lists, the nested list sits inside a list item of the enclosing list, like so :
<ul>
<li> List item
<ol>
<li> List item </li>
</ol>
</li>
</ul>
It’s a really good idea to indent your code properly to make it readable. Use the tab key on your keyboard to tidy up the first half of your code, to end up something like:
Yes, I know the self-closing tag is optional for void elements in HTML5, but thought it best to follow the syntax as taught in the tutorial and not add anything to further confuse the OP
Thanks a lot for your lovely answer!
But the error is shown again.
the error message is
Oops, try again. Make sure you have at least one unordered list inside your unordered list of profile sections!
and my new code is below
'
<!DOCTYPE html>
<html>
<head>
<title>Jiin Lim</title>
</head>
<body>
<img src="https://s3.amazonaws.com/codecademy-blog/assets/ninja_zpsa5dbe37a.jpg"/>
<h1>My Pics</h1>
<p>I'm 20 years old</p>
<p>I live in seoul</p>
<h1> About me </h1>
<ul>
<li> Interests
<ol>
<li> New </li>
<li> Fun </li>
<li> Value </li>
<li> Cat </li>
</ol>
</li>
</ul>
</body>
</html>
'
Would you find out the problem just one more time again?