What are essential tags in an HTML document
Answers
Answered by
3
IN HTML
TO START : <HTML>
TO END : </HTML>
TITLE : <TITLE>
END TITLE : </TITLE>
HEADING : <HEAD>
END HEAD : </HEAD>
Answered by
2
Answer:The HTML <html> tag is the container for all other HTML elements except for the <!DOCTYPE html> tag, which is located before the opening <html> tag. All other HTML elements are nested between the <html> and </html> tags. The HTML <head> tag is used for indicating the head section of the HTML document.
Explanation:
Similar questions