KnowledgeBoat Logo
LoginJOIN NOW

Computer Applications

What is the basic structure of HTML File ?

HTML Intro

2 Likes

Answer

Every HTML document should follow the general form given below:

<HTML>
    <HEAD>
        <TITLE> Title of page is written here </TITLE>
    </HEAD>
    <BODY>
        The HTML tags that define the page are written here
    </BODY>
</HTML>

The <HEAD>...</HEAD> tags make the header of the document and the <BODY>...</BODY> tags make the body of the HTML document.

Answered By

2 Likes


Related Questions