HTML
(If you learn and practise two hour per day then you will learn HTML in 5 days)
The language used to develop web pages is called Hyper Text Markup Language(HTML), HTML is the language interpreted by a Browser. Web Pages are also called HTML Documents. HTML is specified as TAGS in an HTML documents. By convention all HTML tags begin with an open bracket (<) and end with a close angle bracket (>).
The Structure of a HTML Program
The entire web page is enclosed within <HTML> </HTML> tags. Within these two tags two distinct sections are created using the <HEAD> </HEAD> tags and the <BODY> </BODY> tags.
Document Head
Information placed in this section is essential to the inner workings of the document and has nothing to do with the content of the document.<TITLE> </TITLE> tags are placed within <HEAD> </HEAD> tags.
Document Body
The tags used to indicate the start and end of the main body of textual information and represent as:- <BODY> . . . </BODY>
Example of an Basic HTML Program
First HTML Code:-
<HTML>
<HEAD>
<TITLE>Basic Web Page</TITLE>
</HEAD>
<BODY>
<H1>Welcome to Flarett</H1>
<P>First HTML Program</P>
</BODY>
</HTML>