What is HTML?
HTML means Hyper Text Mark-up Language
HTML is a language that instructs the browser how to display the contents of a Web page in the browser window.
The HTML tag specifies the browser that the code enclosed between <HTML> and </HTML> is a HTML code. The HTML code is mainly divided into to sections, namely HEAD section, and BODY section
<html>
<head>
<title> Code Arch </title>
</head>
<body>
------------------------------
------------------------------
-------- contents --------
------------------------------
------------------------------
</body>
</html>