Skip to content

How to Make Web page in HTML

html all tags
Spread the love

In this lesson, you will learn how to make an HTML webpage work.

Open Notepad and type the following code:

<html>
<head>
<title>Computer Tutorial</title>
</head>
<body>
<h1>Welcome to Computer Tutorial Website</h1>
<p>Every thing about computer learning</p>
</body>
</html>
Save the file by opening the File menu and clicking Save As

A dialog box will appear:

– Choose where to save the file

– Specify the file name followed by the .htm extension. Or html. It is an extension of HTML files to be marked as a web page and not a text file.

– Click Save

To test how the page will look when you publish your website, go to the location where you saved the file and open it by double clicking on it.

The page will open inside your web browser.

If you want to modify the code at any time, open the file inside Notepad again and make the changes you want.

Leave a Reply

Your email address will not be published.