Html is a Hypertext Markup language which is used to create web pages and informations are displayed in the web browser. The html program composed with TAGS that is <tags> it starts with <>and with </>. The html program looks like this.
<html>
<head>
<title>page title</title>
</head>
<body>
</body>
</html>
<html>- startin of html pgm
</html>-end of html pgm
<head></head> -head tag enclosed with title,meta tags,stylesheets and scripts etc.
<body></body> - the body tag having the whole content or informations which is displayed in the web browser













































