Structure of HTML
This is the basic template or piece of code which defines the structure of a HTML document.
DOCTYPE: This defines the type of the document. Here in the example it defines that it is an HTML document.
html: This is the root element of any HTML document. It defines that from here you have to start writing HTML code.
meta element: It is used to provide the structured metadata about a webpage.
head: This tag is used to contains the meta data which helps in SEO.
title: This tag is used to define the title of the web page. In the given code "Document" is title HTML document.
body: This tag contains all the content or data which will be displayed on the web browser.
What is Comment Tag in HTML?
Comment tag is used to add comments in the source code. The text inside comments will not be displayed in the browsers. Given code is used to add comment in HTML.
Code Described in the video