Friday, 3 February 2017

HOW TO CREATE WEBPAGE

To create a webpage follow the steps –

·        Launch any text editor (Notepad).
·        Enter required HTML source code

<html>
          <head>
                   <title>First Web page</title>
          </head>
          <body>
                   Welcome to my world
          </body>
</html>

·        Save the file with .htm or .html extension.
·        Right click on the saved file and open with any web browser.
·        If you need to update any text or logic, right click on the file and open with Notepad format.
·        Do require changes and save it. Refresh the web page.

No comments:

Post a Comment