Examples
< !DOCTYPE html> (This Document to be HTML5)
<html> (Root element of an html page)
<head> (Meta information about the document)
<title> (Title for the document)
<body> (The visible page content)
<h1> (Large Heading)
<p> (Paragraph define)
What is HTML?
● HTML stands for Hyper Text Markup Language.
● HTML describes the structure of WebPages using
markup.
● HTML elements are the building blocks of HTML
pages.
● HTML elements are represented by tags.
● HTML tags label pieces of content such as
HEADING,PARAGRAPH,TABLE and so on.
Examples
< !DOCTYPE html> (This Document to be HTML5)
<html> (Root element of an html page)
<head> (Meta information about the document)
<title> (Title for the document)
<body> (The visible page content)
<h1> (Large Heading)
<p> (Paragraph define)
● Browsers do not display the HTML tags,
but use them to render the content of the
page.