Username: Save?
Password:
Home Forum Links Search Login Register*
    News: Keep The TechnoWorldInc.com Community Clean: Read Guidelines Here.
Recent Updates
[March 06, 2024, 02:45:27 PM]

[March 06, 2024, 02:45:27 PM]

[March 06, 2024, 02:45:27 PM]

[March 06, 2024, 02:45:27 PM]

[February 14, 2024, 02:00:39 PM]

[February 14, 2024, 02:00:39 PM]

[February 14, 2024, 02:00:39 PM]

[February 14, 2024, 02:00:39 PM]

[February 08, 2024, 10:26:18 AM]

[February 08, 2024, 10:26:18 AM]

[February 08, 2024, 10:26:18 AM]

[February 08, 2024, 10:26:18 AM]

[November 27, 2023, 06:32:12 PM]
Subscriptions
Get Latest Tech Updates For Free!
Resources
   Travelikers
   Funistan
   PrettyGalz
   Techlap
   FreeThemes
   Videsta
   Glamistan
   BachatMela
   GlamGalz
   Techzug
   Vidsage
   Funzug
   WorldHostInc
   Funfani
   FilmyMama
   Uploaded.Tech
   MegaPixelShop
   Netens
   Funotic
   FreeJobsInc
   FilesPark
Participate in the fastest growing Technical Encyclopedia! This website is 100% Free. Please register or login using the login box above if you have already registered. You will need to be logged in to reply, make new topics and to access all the areas. Registration is free! Click Here To Register.
+ Techno World Inc - The Best Technical Encyclopedia Online! » Forum » THE TECHNO CLUB [ TECHNOWORLDINC.COM ] » Programming Zone » HTML
 How To Create a Website using HTML
Pages: [1]   Go Down
  Print  
Author Topic: How To Create a Website using HTML  (Read 1019 times)
Daniel Franklin
TWI Hero
**********


Karma: 3
Offline Offline

Posts: 16647


View Profile Email
How To Create a Website using HTML
« Posted: September 26, 2007, 01:42:31 PM »




A sample head might look something like this:

<head>
<title>My website</title>
</head>

A sample body looks like this:

<body>


This website is about ....

</body>

Notice that the codes have "<" and ">". The word inside the symbols "<" and ">" tells the browser what you want for them to do. These are called tags. So <title>My website</title> means that you are telling the browser that you want the title of your website to be "My website".

Another thing you should notice is that the beginning tag (such as <head>) does not contain a slash "/" while the ending tag does.

One thing to remember is that you must put html tags at your code. Now if you combine the html tags, the head part, and the body part, you'll get this code:

<html>
<head>
<title>My website</title>
</head>
<body>


This website is about ....

</body>
</html>

Note about spaces:
It does not matter if there are spaces between tags. For example, in the code above, there are spaces between "</title>" and "</head>" while there are no spaces between "
" and "</body>".

Below are some of the common tags that are used by webmasters:

- tells the browser to start a paragraph and display the words inside the code

- creates a break which means that the next words will be displayed on a line below instead on displaying on the current line.
<img src="myimage.jpg"> - display myimage.jpg on the browser.

For an interactive tutorial on how to build websites using HTML, visit http://csshtmltutorial.com/
Articles Source - Free Articles

Logged

Pages: [1]   Go Up
  Print  
 
Jump to:  

Copyright © 2006-2023 TechnoWorldInc.com. All Rights Reserved. Privacy Policy | Disclaimer
Page created in 0.082 seconds with 24 queries.