Learning HTML Tutorial part 2 in English

 Basic HTML Document

In its simplest form, following is an example of an HTML document:

<! DOCTYPE HTML >
<HTML>
        <HEAD>
                        <TITLE>BASIC HTML</TITLE>
        </HEAD>
<BODY>
        <H1>THIS IS HEADING TAG </H1>
                <P>THIS IS PARAGRAPH TAG </P>
</BODY>
</HTML>


Now  Simple Open NOTEPAD or Any Text Editor from windows write  and save it in an HTML file test.html 
Finally open it using a web browser like Internet Explorer or Google Chrome, or Firefox etc. It must show the following output:




Comments