Computer Studies

Write all the steps to start writing an HTML document

HTML Intro

32 Likes

Answer

To start writing an HTML document on Notepad, follow these steps:

Step 1: Click the 'Start' button.

Step 2: Select 'All Programs' from the pop-up menu.

Step 3: Select 'Accessories' from the drop-down menu.

Step 4: Click 'Notepad' from the drop-down menu. An untitled notepad will appear on the screen.

Step 5: Now, one can start writing the HTML code by using the following tags:

<HTML>
    <HEAD>
        <TITLE> HTML DOCUMENT </TITLE>
    </HEAD>
    <BODY>
        ...................
        ...................
    </BODY>
</HTML>

Answered By

18 Likes


Related Questions