HTML stands for Hypertext markup language, where Hypertext is a text linked to other document or webpage, Hypertext is presented in blue color with underline called link and Markup language is the tags provided in html, used to create web pages, these tags have special definition or meaning, for example you want to make a text bold, then use “<b></b>” tag. there are numbers of tags available in html.
HTML is case-insensitive language which means, uppercase (capital letters) and lowercase (small letters) can be used to create webpages. Static web pages can be created using HTML.
Without HTML, one cannot create web-page, Hence it is popularly called Language of web. HTML is error free language which means it does not give error on any type of mistake.
HTML is used to create layout or structure of a webpage. Browser uses HTML to display content of a webpage.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>