- HTML stands for Hyper Text Markup Language
- HTML is the standard markup language for Web pages
- HTML elements are the building blocks of HTML pages
- HTML elements are represented by
<> tags
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