
| Start tag | Element content | End tag |
|---|---|---|
| <h1> | This is a Heading | </h1> |
| <p> | This is paragraph. | </p> |
HTML elements are the building blocks of HTML pages.
<!DOCTYPE html> declaration defines this document to be HTML5<html> element is the root element of an HTML page
lang attribute defines the language of the document<meta> element contains meta information about the documentcharset attribute defines the character set used in the document<title> element specifies a title for the document<body> element contains the visible page content<h1> element defines a large heading<p> element defines a paragraph
