The <html>
tag indicates the start of the actual HTML document. What tag should appear at the end of the document?
<lmth>
</html>
<html/>
<html>
Answers Explanation & Hints:
The correct tag that should appear at the end of an HTML document is Here’s an example of a basic HTML document structure: <html> <head> <title>My Webpage</title> </head> <body> <!-- Content of the webpage --> </body> </html> The opening |