Hello and welcome to the Webmasters Forums!. This is the best place to get webmasters resources for free. Get $2 for free today, read more - Make your payment today. Download premium and professional templates for free. Get free web hosting without ads, read more. You can get lot more by simply join with this forum. To gain full access to the forums you must sign up for a free account.


Post Reply  Post Thread 

Basic HTML Page Structure

Post Bank
Posting Manager
******

Posts: 995
Group: Forum Team
Joined: Sep 2006
Status: Online
Make money from now. You can make money just for posting on this forum. Every discussions on this community gives you more money. $2 minimum payout. So get your payment today, SignIn with this forum.

Signin to Remove this Post

walsh
Senior Member
****


Posts: 401
Group: Registered
Joined: Oct 2006
Status: Offline
Reputation: 0
Points: 680 (Donate)
Post: #1

Rolleyes Basic HTML Page Structure


Here iam giving you the basic HTML page structure for the bigginers.

The basic structure of HTML pages are TAGS. Tags are those things enclosed on '<' and '>'. Each tags are used for display some thing on the browser or hold some properties of the page. The tags are of two types: single tag and paired tags. Paired tads are those one which is closed with </ > tag, help to specify the boundary of the tag. Each of the tags having some specified properties and they are specified using attributes. ( Example: size=1, color=red,ect.. )

Every HTML page is within the <HTML> and </HTML>tags. This tag specifies the page is a html page.

Then the properties of the page holds in the <HEAD> </HEAD> tags. Within this tag, another important tags like page title tags ( <TITLE>Page Title</TITLE>), meta tags, ect. are enclosed.

Then comes the body part of the page. This region is the visible part of the page. Every thing on the page which is used for viewing is situated within the <BODY></BODY> tag.


Some other tags used within the BODY tag:


<p></p> --- Paragraph
<table></table>--- Table creation
<tr></tr>--- Table row Creation.
<td></td>--- Table column ( data ) creation.
<br>--- Break line.
<font></font>--- Font character specification.
<ul></ul>--- Bullet creation ( unordered lists ).
<a></a>--- Anchor Tag ( Used for Link Creation ).
<img>--- Image insertion on page.
<h1>--- Header tag, the priority ranges from 1 to 6. 1 is the highest.


Now iamshowing you an Example of a HTML page:


Code:
<html>
<head>
<title>Demonstration Page</title>
</head>
<body>
<p>An Example Page</p>
<table align=center>
<tr><td>First Column</td>
<td>Second Column</td></tr>
<tr><td>Second row first column</td>
<td>Second row second column</td></tr>
</table>
<br><br>
Thats all...
</body>
</html>


Now how to save a html file?

Open your text editor ( Notepad ).
Write your own tags on it.
Make a formatted code as given above.
save the file with extension .html



Thats all foks.


02-10-2006 04:20 PM
Find all posts by this user Quote this message in a reply
bomber
Junior Member
*


Posts: 34
Group: Registered
Joined: Sep 2006
Status: Offline
Reputation: 0
Points: 250 (Donate)
Post: #2

RE: Basic HTML Page Structure


Great tutorial for new comers.

02-10-2006 07:40 PM
Find all posts by this user Quote this message in a reply
clookid
Advanced Member
***


Posts: 184
Group: Registered
Joined: Oct 2006
Status: Offline
Reputation: 4
Points: 134 (Donate)
Post: #3

RE: Basic HTML Page Structure


That is a great tutorial for beginners although it didn't help me much because I already knew all of that....


Veebra Articles - Computer and technology related articles.
07-10-2006 04:34 PM
Find all posts by this user Quote this message in a reply
ivenms
Administrator
*******


Posts: 2,172
Group: Administrators
Joined: Sep 2006
Status: Offline
Reputation: 14
Points: 4373 (Donate)
Post: #4

RE: Basic HTML Page Structure


You can also contribut a little knowledge with others. That could help others to develop their skills. Sharing things like this only help yourself as well as others. You can get many new things which you searching for. I found many things from others on this forum which is new to me.


Read: General Rules & Policies before posting.
Make Money By Posting | Earning and Exchanging Points | Add Your Links
07-10-2006 04:38 PM
Find all posts by this user Quote this message in a reply
clookid
Advanced Member
***


Posts: 184
Group: Registered
Joined: Oct 2006
Status: Offline
Reputation: 4
Points: 134 (Donate)
Post: #5

RE: Basic HTML Page Structure


Another useful tag is <textarea> </textarea> -- Used to create an editable box of text.
Another very useful tag that you must have forgotten is <hr /> -- Used to create a horizontal line.
Another is <!-- --> -- Used to create a comment.
I could go on for ever nearly! This should help for some more basic notation in HTML/ XHTML.


Veebra Articles - Computer and technology related articles.

This post was last modified: 07-10-2006 04:50 PM by clookid.

07-10-2006 04:50 PM
Find all posts by this user Quote this message in a reply
ivenms
Administrator
*******


Posts: 2,172
Group: Administrators
Joined: Sep 2006
Status: Offline
Reputation: 14
Points: 4373 (Donate)
Post: #6

RE: Basic HTML Page Structure


The text area tag is with in the <form> tag ( used for sending visitor related information from the remote computer to the server ).

There are two types of forms - GET and POST

Ex:

Code:
<form action="target url" method="GET name="formname">
<!--form variables-->
</form>


The variables can be implemented on the form using <input> tag.

Some of them are:

Text Box.

Text Area.

Check Box.

Radio Button.

Simple Button.

Submit Button.

Hidden Field.

You can find the details of these on the future posts.


Read: General Rules & Policies before posting.
Make Money By Posting | Earning and Exchanging Points | Add Your Links
07-10-2006 05:03 PM
Find all posts by this user Quote this message in a reply
clookid
Advanced Member
***


Posts: 184
Group: Registered
Joined: Oct 2006
Status: Offline
Reputation: 4
Points: 134 (Donate)
Post: #7

RE: Basic HTML Page Structure


Yes, a textarea can be used in form but other websites also use them to display source code etc. etc.


Veebra Articles - Computer and technology related articles.
07-10-2006 05:12 PM
Find all posts by this user Quote this message in a reply
Suraj
Junior Member
*


Posts: 59
Group: Registered
Joined: Jul 2007
Status: Offline
Reputation: 0
Points: 1 (Donate)
Post: #8

RE: Basic HTML Page Structure


hey thanks for that tuts am beginer... that helped me...Smile


visit http://www.123entertainment.page.tl and http://www.berich.uk.to
note: berich.uk.to is under costruction!
19-07-2007 11:35 PM
Find all posts by this user Quote this message in a reply
Post Reply  Post Thread 

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  log in page Artmark 6 186 27-03-2008 01:00 AM
Last Post: ivenms
  How do I add page description and keywords? Cedik 3 202 29-01-2008 03:10 AM
Last Post: Menard
Question HOW TO HAVE ADS IN SIDES OF DA PAGE?? Lord_Daksh 11 384 27-11-2007 03:21 PM
Last Post: Lord_Daksh
  Flash Site (Landing Page) Optimization kristy 7 318 17-10-2007 03:13 AM
Last Post: walsh
Smile Design HTML pages only with CSS ivenms 12 1,285 08-10-2007 02:24 AM
Last Post: balakrish
  Forum Basic Helps Pirate King 34 803 25-09-2007 11:38 PM
Last Post: ivenms
Question Is DOCTYPE specification is necessary for an html page? Lord_Daksh 11 380 21-09-2007 02:22 AM
Last Post: Lord_Daksh
Question HOW TO HIDE YOUR HTML SOURCE CODE? Lord_Daksh 6 273 17-09-2007 07:38 AM
Last Post: Lord_Daksh
  Make a GoTo Top of Page Link fightclub 3 895 05-12-2006 05:46 PM
Last Post: ivenms
  HTML Introduction clookid 2 581 29-10-2006 07:14 AM
Last Post: clookid

View a Printable Version
Send this Thread to a Friend
Subscribe to this Thread | Add Thread to Favorites
Rate This Thread:

Forum Jump:

Sign In to Remove Ads

Download 1000's of web templates. Unlimited access!
World's Best Web Hosting
Website of the Month

Create-a-Page for Free
SOTM June 2008


Accepting Submissions
for July 2008
Resources

Recommended Sites:



Visit our Sponsors!

Current time: 20-08-2008, 06:19 PM


Copyright © 2002-2008 MyBB Group
Powered By MyBB