Introduction
HTML stands for Hyper Text Markup Language. This language is used for creating web pages. No matter what technology is used to create a web based application. HTML will be there for web pages.
You need to follow a proper structure to write a web page.
Example
<!DOCTYPE html>
<html>
<head>
<title>Title of the Page.</title>
</head>
<body>
HTML content for the page is written here
</body>
</html>