Monday, May 14, 2007

HTML - Hello World

Hello World is the most basic piece of code that runs properly and display some text to the screen. Ok lets start.

  1. Open Notepad or any other program you like to use to create HTML code.
  2. Place this code in the notepad.
    <html>
    <head>
    <title> Hello World This is The Title of My Page </title>
    </head>
    <body>
    Hello World !!
    </body>
    </html>
  3. Click File from the menu and click save as.
  4. Type in hello.html where it says filename and hit save.
  5. You just created your first page using HTML.
  6. Double click on the file you created and let it open. You should see "Hello World !!" in your browser.

No comments: