+ 2
What error?
+ 2
Royal You're getting there! it took me a while to get the structure down as well when I was learning.
I recommend you go back to the HTML lesson 2.1 to refresh memory about the HTML structure.
+ 1
Royal
Yout html structure is not proper.
1 - Body tag is missing
2 - head tag can't be inside body tag
3 - didn't close ul
4 - didn't close p tag
Structure of HTML
<html>
<head>
//It will not display on browser
</head>
<body>
//Visual part which is display on browser
</body>
</html>
0
I don't see any errors.
0
Royal
Those contents which are display on browser should go inside body tag.
Inside head tag, meta, style, javascript, link tag comes
And other tags go inside body tag
- 1
Okay