SEARCH OUR SITE
HOME TUTORIALS RESOURCES SEARCH ABOUT US CONTACT US HELP
 Guide to Learning HTML - Tutorial - Basic
Creating your first page
Basic structure of HTML
<html>
<head>
<title>
Title of the page
</title>
</head>
<body>
   .
   .
Content of the page
   .
   .
</body>
</html>
The basic HTML page begins with the <html> tag and ends with </html>. In between, the file has two sections - the header and the body.
Within the <head> tags, we have the title - "Title of the page" - which will appear in the bar across the top of your browser.

Comment tag
The comment tag <!--> is used to insert comments in the HTML source which will be ignored by the browser.
Here is an example:
<!--This will not be displayed-->

Step-by-step
1. Type or copy the above text into notepad
2. Type your own title between <title> and </title>
3. Type anything else you like between <body> and </body>
4. Save it as index.htm (not index.txt)
The last thing you need to do is to open the index.htm using a browser.


Choose a topic
 Basic HTML
  - Basic
  - Background
  - Links
  - Images
 Intermediate HTML
  - Font Size
  - Text
  - Lists
  - Background Music
 Advanced HTML
  - Tables
  - Frames
  - Meta Tag
 Quick Reference
  - HTML Tags
  - Special Characters
 Location: /28461/basic.htm
PREVIOUS PAGE NEXT PAGE

| Home | Tutorials | Resources | Search | About Us | Contact Us | Help |


This web site is best viewed with 800 x 600 High Color,
Internet Explorer 4.0 or Netscape 4.0 or later versions.
This entire site, except for licensed resources,
Copyright © 1999 by Team28461 All rights reserved.