What is HTML?
It describes the
structure of the Web page, It consists of a series of element & tells the
browser how to display content.
HTML Elements are
represented by tags such as "Heading", "Paragraph",
"Image" tag and so on.
Note - Browser does not display HTML tags, but use them to render the
content of the page.
HTML Elements are
represented by tags such as "Heading", "Paragraph",
"Image" tag and so on.
Tags
Explained:
- The <!DOCTYPE html> element defines this document to be HTML5.
- The <html> element is the root element of an HTML page.
- The <head> element contains meta-information about the document.
- The <title> element specifies a title for the document.
- The <body> element contains the visible page content.
0 Comments