HTML which stands for Hyper Text Markup Language, is a primary web page 'scripting' language. In HTML web page, it is always surrounded by <html> tag and most of its tag came in pairs like <p> and </p> as example, <p> is called start tag or open tag and </p> is called end tag or closed tag for a paragraph. Most of web page in internet are formed by HTML and it is also called HTML Document.
Internet Browser is purposed to read the HTML code to be a page (that's why HTML is also called web page), in each tag, it performs unique content. Example below:
<html>
<body>
<h1>TITLE</h1>
<p>Content in paragraph</p>
<p>Content in another paragraph</p>
</body>
</html>
* The text between <html> and </html> describes the web page type of HTML.
* The text between <body> and </body> is the visible page content which is showed on the page you see by Internet Browser.
* The text between <h1> and </h1> is displayed as a heading, usually used for title.
* The text between <p> and </p> is displayed as each paragraph.
In this article, we will learn how do we do HTML scripting. Just remember that HTML is the most important thing for developing a website.