What is HTML?
What is hypertext markup language or HTML?HTML is that the normal nomenclature for making web content.
HTML stands for Hyper Text nomenclature
HTML describes the structure of an internet page
HTML consists of a series of parts
HTML parts tell the browser a way to show the content
HTML parts are painted by tags HTML tags label items of content like "heading", "paragraph", "table"
Browsers don't show the hypertext markup language tags, however use them to render the content of the page
Following is the example of markup language -
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1> My initial Heading</h1>
<p> My initial paragraph.</p>
</body>
</html>
!DOCTYPE html>
defines this document to be HTML5 element is that the root part of associate hypertext markup language page element contains meta info regarding the document element specifies a title for the document element contains the visible page content The part defines an outsized heading The part defines a paragraph HTML tags usually are available pairs like and The first tag in a very try is that the begin tag, the second tag is that the finish tag The end tag is written just like the begin tag, however with a forward slash inserted before the tag name