<html>
<title>HTML</title>
<head>HTML TUTORIAL</head>
<body>
<p>hi this is the basic html tag</p>
</body>
</html>
<html>,</html> - indicates the start and end of html program
<title>,</title> - indicates the start and end of the title. The title does not appear in the body of the Web page, but appears on the title bar of the browser.
<head>,</head> - indicates the start and end of a section of the document used for the title and other document header information.
<body>,</body> - indicates the start and end of the Web page body
paragraphs are defined with the <p> tag
1. Use notepad + +
2. Save it to html file
3. Open in browser.


