Definition

HTML is a hypertext markup language.It allows the user to create web pages and web application. HTML describes the structure of a web page and it consists of a series of elements.


Simple example of HTML

<!DOCTYPE>  
<html>  
<head>  
<title>This is web page title</title>  
</head>  
<body>  
<h1>This is  Heading 1</h1>  
<p>This is paragraph</p>  
</body>  
</html>  

Browser view

This is web page title

This is Heading 1

This is paragraph