Nov 21, 2009

How To: Html Tables. - I find these really useful.

free web hosting
Open Discussion > MODERATED AREA > Tutorials

How To: Html Tables. - I find these really useful.

Wetton
If you are a novice web designer, but want your site to look advanced and proffessional, then what better way to do so than to use HTML tables?

HTML tables are a really easy way of formatting your text, to make your ste look proffesional. It looks good, and its easy, what more can you ask for?

You have to use the <table> tag, so first lets start off with:

HTML
<Table>

</table>


In between theese two tags, we will add the data for the table, using the tags <td><tr> and <th>.
<th>=Table Heading (Title)
<td>=Table Data (what you want in the table) [if you do not use this then the text will appear outside of the table rather than in it]
<tr>=table row (new row)

So, lets get started.

HTML
<table>
<th><tr><td> HEADING </th></td></tr>
<tr><td> SUB TEXT</tr></td>
<tr><td><th>ANOTHER HEADING</tr></td></th>
<tr><td> SUB TEXT</tr></td>
</table>


Thats the basics sorted, just add more if you need more heading/subtexts, or remove if you need less.

Now, lets sort out the border, and alignment. You do this in the <table> tag.

HTML
<table border="1" align="left">
<th><tr><td> HEADING </th></td></tr>
<tr><td> SUB TEXT</tr></td>
<tr><td><th>ANOTHER HEADING</tr></td></th>
<tr><td> SUB TEXT</tr></td>
</table>


The border="1" simply means theres a size one border. if you want the thickness of this border increasing, then increase the number.
To change alignment, you can choose to align="right", if you want it centered it may be easier to follow this code:

HTML
<center><table border="1">
<th><tr><td> HEADING </th></td></tr>
<tr><td> SUB TEXT</tr></td>
<tr><td><th>ANOTHER HEADING</tr></td></th>
<tr><td> SUB TEXT</tr></td>
</table></center>


(The background colour goes off the normal default, or whats in your body tag) E.G.

HTML
<body bgcolor="red">
<center><table border="1">
<th><tr><td> HEADING </th></td></tr>
<tr><td> SUB TEXT</tr></td>
<tr><td><th>ANOTHER HEADING</tr></td></th>
<tr><td> SUB TEXT</tr></td>
</table></center>
</body>


(This also works for text color.)

Thats more or less it, your step by step guide to HTML tables. If you have anymore questions you need to ask, go ahead.

Thanks.

 

 

 


Comment/Reply (w/o sign-up)

jlhaslip
Besides creating a 'professional' presentation of Data, there should be a focus on Accessability, too.
I recommend the following link from the w3c Group that deals with this issue in depth.

http://www.w3.org/TR/WCAG10-HTML-TECHS/#tables

Notice that the Table tag should not be used to structure a page, though. it should only be used for presentation of 'tabular' data. if the data comes pout of a database, it is likley a good candidate for using a table, otherwise, consider the use of CSS div's for the page structure.

Comment/Reply (w/o sign-up)

electriic ink
What happened to your code? You've nested the HTML incorrectly. You've written the code this:

HTML
<a><b><c> XYZ </a></b></c>


When it should be:

HTML
<a><b><c> XYZ </c></b></a>


Also, in one line, you wrote:

HTML
<th><tr><td> HEADING </th></td></tr>


You've started a table cell (in tag <th>) outside of any table row! Also, <th> and <td> are treated exactly the same so <tr><th></th></tr> is valid on its own, without a <td>.


So code like this:

HTML
<table border="1" align="left">
<th><tr><td> HEADING </th></td></tr>
<tr><td> SUB TEXT</tr></td>
<tr><td><th>ANOTHER HEADING</tr></td></th>
<tr><td> SUB TEXT</tr></td>
</table>


Should be:

HTML
<table border="1" align="left">
<tr><th> HEADING </th></tr>
<tr><td> SUB TEXT</td></tr>
<tr><th>ANOTHER HEADING</th></tr>
<tr><td> SUB TEXT</td></tr>
</table>


Compare the difference in terms of output:



Looks quite trivial but in terms of output it's not. Good effort but you still have a fair bit of learning left to do!

 

 

 


Comment/Reply (w/o sign-up)

Wetton
Thanks electric, I was just about to ammend this after I realised my method was wrong (after I started designing my site) But you beat me to it. tongue.gif

Thanks.

Comment/Reply (w/o sign-up)

KansukeKojima
If you know CSS, I would advise using that to create your layouts and templates, instead of tables. Table suck up bandwidth, and are not very professional anymore.

Comment/Reply (w/o sign-up)

A200
If you have dreamweaver or any other WYSIWYG, then use it. Tables are good for some things, but don't rely on it 100% for your site- there are such things as divs and other ways to make a page index nice. CSS is good to use too...


Comment/Reply (w/o sign-up)

games4u
I would like to add a usual technique used by web designers.
Most of the websites (or webpages) use tables; so it is a nice idea to use tables with border=0. Doing this gives you a very good control over the display of the webpage.

For example: consider a form for entering comments on a website. Instead of simply designing the form like:
HTML
<form>
Enter Your Name: <input type=text name="name"><br>
Enter Your Email: <input type=text name="email"><br>
Enter Comments: <textarea></textarea>
</form>


it would be better to code as:
HTML
<form><table align=center border=0>
<tr><th>Enter Your Name:</th><td><input type=text name="name"></td></tr>
<tr><th>Enter Your Email:</th><td><input type=text name="email"></td></tr>
<tr><th>Enter Your Comments:</th><td><textarea></textarea></td></tr>
</table></form>


Submit buttons and reset buttons can also added.

It also gives a good output.
Thank you.

Comment/Reply (w/o sign-up)

rvalkass
QUOTE(games4u @ Apr 30 2008, 08:44 AM) *
it would be better to code as:
HTML
<form><table align=center border=0>
<tr><th>Enter Your Name:</th><td><input type=text name="name"></td></tr>
<tr><th>Enter Your Email:</th><td><input type=text name="email"></td></tr>
<tr><th>Enter Your Comments:</th><td><textarea></textarea></td></tr>
</table></form>


That code is not better, but wrong. A form is not tabular data, so does not belong in a table. Also, the align tag has been deprecated since HTML 4, so should not really be used.

Comment/Reply (w/o sign-up)

Forbez
Yeah, this really needs to be addressed. Tables are the abused sibling of the internet. 95% of websites are designed fully by tables. I personally hate tables and try my best to avoid tables at all costs. What can be done with tables can be done better with division tags (<div>).

Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : , html, tables,

  1. Create Dynamic Html/php Pages Using Simple Vb.net Code
    Taking your application data, and creating a webpage for others to vie (1)
  2. Add Flashing Inbox To Invisionfree Forum
    Html code for invsiionfree!! (2)
    Do you find it annoying when you are on your invisionfree forum, and you get a new message, and it
    ends up taking you 5 minutes to notice? This code makes the inbox link flash bold red saying how
    many messages you have. In version 1 the word inbox stays the same, and doesnt change at all (for
    Example this is flashing: Inbox (2) In version 2 (the second code) the word inbox changes to
    messages (constantly, so that if you have none, it says messages (0) instead of inbox (0). It still
    flashes Red Put the following In the Header and Body Section (Admin Cp>>>Skinning ....
  3. Getting Started With Mysql
    creating tables and insert data into them. (2)
    Hi in this tutorial you will learn how to create tables and insert items into them. First steps are
    to create the database - go into your cpanel and mysql databases, from there make an account and a
    database and then attach them together with all priviliges, call the database test and the account
    admin, with the pw as pass - or any other password. We need to connect to the database so first in
    your php file (probably named index.php) - this is how to do it. CODE
    mysql_connect("localhost", "admin", "pass") or die(mysql_error()); mysql_select_db("test") or
    die(mysql_....
  4. [php] Clean Code Functions
    Clean up your html output from php scripts (5)
    There is another Topic about writing 'clean' HTML code posted elsewhere on the Forum.
    I'll edit this Topic and add the link so you can review it on your own, and there is no need for
    me to comment on it in this thread, but the purpose of this Topic is to introduce a pair of
    functions which can be used for making sure that the HTML output from my scripts is readable when a
    view-source is reviewed. Two handy functions are included here. They work together quite nicely,
    and I will start this Tutorial with a short summary of the reasons for their 'being....
  5. Cakephp On Ubuntu
    using your own public_html folder (1)
    Hi, there are many tutorials about this, but i would like to type the steps i followed in order to
    get cakephp working on my user public_html folder. as many of you probably know, if you have
    apache's userdir module loaded, you can put your web pages on /home/user/public_html , and
    access them with the url: http://localhost/~user/ . I really prefer this, so all my web pages are
    on my personal home, but how to configure cakephp to work with these paths, i got a hard time with
    this, but finally got it!. here's how: in case you don't have apache2's userd....
  6. Html Span
    (7)
    HTML Span Description The span tag is quite the handy tag to have at your disposal. You can use
    it for everything from Text Formating, to creating a scrollable text area. When combined with CSS it
    becomes an easy-to-use tool for making your website as uniform as possible, as your not bogged down
    with tags for every heading and title on your website. Try It Out CODE Heading or
    title goes here. All the content inside the div tags go here Above we have a very
    basic page. The tag would be used to house the content of your page. The woul....
  7. Html Bdo...
    (13)
    Description I find that it is often difficult to write a sentence backwards, but thanks to HTML, I
    can now complete this task in only a few seconds. Now the only problem is it is very difficult to
    read... Try It Out Welcome to one of the most useless functions of HTML. The tags enable you to
    write a sentence backwards. The code is quite simple. CODE I find that it is often difficult
    to write a sentence backwards, but thanks to HTML, I can now complete this task in only a few
    seconds. Now the only problem is it is very difficult to read... Well there you go.....
  8. Want-to-start Html Tutorials
    An HTML tutorial that covers the basics (2)
    NOTE: Don't use a rich text editor* for writing HTML code! Use Notepad in Windows,
    SimpleText in Mac or TextEdit in OSX, but you must set the following preferences for the HTML code
    to work! In the Format menu, select Plain Text. Open the preferences window from the Text Edit
    menu, then select "Ignore rich text commands in HTML files." Start Creating Your Own HTML File
    You can either use HTM or HTML file extensions. For more information, visit:
    http://filext.com/file-extension/htm for HTM or http://filext.com/file-extension/html for HTML.
    Ope....
  9. Creating Navigation For Html Websites
    Have a common navigation menu for the whole website! (12)
    Pre-requisite: HTML, inline frame tags 1 Attachment(.zip) included. Updates : 29-12-07: Doctype
    added in example files (Advised by jlhaslip) Designing a whole website takes a lot of planning
    and organization. Designing a proper navigation system is a basic step in building your website. If
    you are developing webpages in html you would have observed that as you go on creating pages it
    becomes difficult to maintain the links to the pages. This article will guide you in developing a
    common navigation menu for your website. It describes three ways, so if you don'....
  10. Create A Simple Html Editor With Php And Javascript
    (3)
    Ok, I will teach you how to create a simple HTML editor that runs online with buttons that add HTML
    tags. Before we start: You should have basic knowledge of these languages. HTML/XHTML
    Javascript PHP You will need Ability to use filesystem functions. Chmodding abilities
    Features of Editor Online PHP safe Full HTML support A Few Bad Features Can only create new
    documents or overwrite Fairly unsafe Now we are ready to begin. The PHP Script This will be
    our PHP script that we will use to make the file. Make a file called save.php Here is the....
  11. Html Legend
    Learn how to create a handy legend with HTML! (9)
    I think this is pretty neat... good for those people who maybe aren't that great at designing
    things but still want something to look nice.. CODE Legend title Content try it in
    note pad.. it looks nice...good for forums, sign up forms.......
  12. Spice Up Your Forms
    With a bit of CSS and HTML alignment (11)
    Ever wonder how to make those stylish forms you see everywhere? Well now it's your change to
    learn. This short tutorial will show you how to do exactly that. Here is a bit of css to spice
    up the form. I have included comments to explain what classes will change what in the forms.
    CODE .form table { background-color: #187cae; } /*The following css class will change the
    table cells within the .form div */ .form td { background-color: #bbe0f4;            padding: 3px;
               border: 0px;            font-family: verdana;            font-size: 10px;  ....
  13. Do You Want To Use Php Code In Your Html Pages?
    Within two minutes you will! (9)
    Whilst searching around for help to setup cutenews blog I came across a way to use php in html pages
    - lo and behold it works! so I thought I'd share it with you all (Unfortunately I can't
    remember the site so I wrote this up a couple of minutes after I did it:) ). This method requires a
    web server with apache installed. So, luckily for us all this covers the whole of Trap17... even
    Qupis /tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> Just
    to make the point, this is in no way a difficult task and it doesn't require yo....
  14. How To Make A Simple File Based Shoutbox Using Php And Html
    (8)
    A simple tut to make a simple shoutbox. Let me jump right in. First of all you need the standard
    equipment for PHP, an IDE like XAMPP and an editor like PHP EDITOR 2OO7. Were going to make a
    simple guestbook using three files, webpage.php, shout.php and shout.txt. Webpage.php can be
    changed to whatver you want, it will be the page on which the guestbok is shown, you could even use
    this code and add it to another php page n your site. Shout.php is the proccessing page and
    shout.txt is where the shouts are stored. Firstly we need to make the visual design of the box.....
  15. Simple Scripts In Html And Javascript
    Things like BackgroundColorChanger and so (7)
    like in the topic, here is a description how to change the Backgroundcolor "On The Fly", by klicking
    on a button or radio-box first, we ned the html-and body-tags, create a new html-file on your
    desktop and write the following: QUOTE browser interpretation: html - tag
    means "hey, browser, here comes HTML" in the body-tag you define the looking of your site. you can
    add things like "bgcolor" for the background, "text" for the textcolor and link / alink / hlink /
    vlink to define the linkcolor ( ) the scripttag is the tag, we'll need now (sorr....
  16. Document Type Declarations
    And why we use them in html pages (0)
    This code: CODE    HTML 4.0 Strict document                ... Your HTML
    content here ...      ... More HTML content here ...    represents a minimum, acceptable
    web-page according to the W3C which is the organisation that sets the standards for the World Wide
    Web, or as we call it, the Internet. In another Tutorial, you can learn about the html code, but in
    this Tutorial, I wish to emphasis the importance of the DTD or Document Type Declaration, the first
    line in the sample code above. What it does is tells the Browser that a certain set....
  17. Fast Template Design In Joomla Cms
    Basic knowlege of Html needed (2)
    Joomla is one of the most powerfull CMS sistems around. It is free under GNU/GPL license and
    everyone with simple knowlege of webdesign (and even without it) can use it for it's website.
    For now the only way i know on how to design a template in joomla is by using Dreamweaver and Joomla
    (joomlasolutions1.0.mxp-dreamweaver.mxp) extension for dreamweaver! Template design in joomla is
    quite simple really. This template that i'll show you is the most simplest of them all, but
    it's enough for one to learn Basics of template design. Further notice is that this is ....
  18. Integrating Html And Css Part 1
    (5)
    Ok. Well i am writing this as a series of tutorials i will be doing on this subject, so enjoy. I
    hope this helps. Introduction to HTML and CSS
    HTML and CSS are to work together. HTML is what puts the characters on the page, while CSS is what
    makes everything look outreageous! For instance, I would use HTML if i wanted to put "Trap17 is the
    poop!" onto my page, although if i wanted to make it look nice like this by adding a font, and maybe
    some color, then I would use CSS. Learn the HTML. Ok this is my little into....
  19. How To Create Tables
    (1)
    At the end of this tutorial you should know how to: 1.How to create a database on your sever
    2.How to create tables on a mysql database For a script 3.How to confirm your script so that
    it works with your database TUTORIAL PART 1 How
    do we create a database using the cpanel on a server? Well i'll explain it the best way i can.In
    your cpanel go to yor mysql options.Once in you will easeily see than option to create a database
    and an option to create a user. Frist go to the create database option and t....
  20. How To Create Html Page Anchors
    Click A Link And Take You To A Certin Place On The Same Page (5)
    Have you ever wondered how people have a normal link but all it does it take you to the middle of a
    long page? well here is a solution DEMO: Here Ok well first off for the link it will be just
    like a normal link code except you wont put a http://URL.com/file.php it will look somthing like
    this QUOTE name ">Click This Link! there must be a # sign in front of this to work.. now,
    for the content that the person will be re-directed to after clicking the link QUOTE name ">
    the items in bold is what you need to change QUOTE name "> if yo....
  21. Multiple Classes In Html
    you can use more than one at a time (8)
    Multiple Classes in Css Styles Classes are used in html pages to give certain defined
    attributes to elements. They are useful when the attributes are to be used in more than one place on
    a page. (Named Id's are only allowed once per page, but I digress... might have a tutorial on
    that some day.) Sometimes you want Red text and sometimes you want Bold text. Easy enough to do,
    simply define a class and apply it to the element you want red or bold. Use this class where you
    want on the page, since classes are enabled to be used in several spots, for different u....
  22. Basic Html (for Us Kids)
    (23)
    What is HTML? HTML (hypertext markup language) is computer language that is used to webpages. It
    can be confusing to understand for some of us kids. HTML pages are text files that has of HTML tags
    (they can place the text or images whereever you want to place it), and text you can place between
    the tags so the text willshow up on your page when you put it on the WWW. Tags are instructions that
    tell your browser what to show on ya website. They break up your webpage into basic sections. All
    tags start with a (right bracket). If you are a starter you need 4 tools A....
  23. Saint-michaels Html Tips And Tricks #4
    been awhile so here somewhat new stuff (12)
    WEll its been awhile since i did so i will put up some more useful html tips and tricks here on
    trap17.com Ok for trick actually, want to know how some websites got those ool icons put on their
    website link in the favorites folder well here you go in 3 quick steps. 1. create an image then
    shrink it down to 16x16 and save it as avicon .bmp. 2. then change it to .ico, when is the file
    reconizing it as a icon., if you are having problems saving it, there are some resources out there
    that can change it for you. 3. load the image to your website and add this tag in betwee....
  24. Saint-michael Html Tips And Tricks Issue #3
    exploring meta tags and what uses they have (0)
    Todays issue we are going to talk about a bunch of good newbie stuff. The first is meta tags to
    make it easy use a generator, from my searches on the internet ther are soe many meta tags to use
    its not even funny but for those whoe like them is are the more common ones that are used for a
    website. QUOTE also for a dynamic look using the meta this called page
    fading so to speak, what it does when you click on a link the website will fade for a duration of
    time to the next page on your site warning it doesn't do anything when you first cl....
  25. Saint Michael Xhtml Tips And Tricks #1
    xhtml= html 5.0 :P (3)
    Well by the many views i have seen on my web design issues i should go into new territory, so im
    going start with some useful xhtml info for you web design fenatics, the info i present to you is
    from other websites so be warned it might or might not work all depends but lets start off with the
    basic info for using xhtml. Also this tutorial is for beginners so i won't be doing any xml
    info due to it being a more server side then actually webdesign 1. DOCTYPE this is used to tell
    the browser what kind of infomation it will be displaying. nothing as really changed....
  26. Saint-michaels Html Tips And Tricks Issue # 2
    some more tricks of the trade and some wierd stuff to (2)
    Well i thought it was time to bring in issue 2 of html tips and tricks and i found a very
    interesting html coding which i thought was funny as hell its called Preventing Search Engine
    Indexing this coding is used to keep your website from being index why i don't know why you
    don't want you website listed unless it someone stupid as in telletubbies.com but heres the code
    This tag tells the robots not to index this page and not to follow any links within the
    page. QUOTE This tag tells the robots not to index this page, but follow any links wit....
  27. Saint_michael Html Tips & Tricks Issue #1
    useful html stuff (1)
    this little trick i though was useful it used to send a visitor to another page using meta tag and
    it sends the user to another page with in a few seconds for example you will go to the new page in 5
    seconds CODE and for those have a good knowledge of javascript they could use this
    script right here CODE Refresh Page var time = null function move() { window.location
    = 'http://yoursite.com' } //--> see this page refresh itself in 3 secs. and
    those who think its cool to added a song to thier website for fansites this is a goo....
  28. A Complete Guide To Tables
    (11)
    I've been away for quite a while but have returned now. with it I bring a tutorial I call
    A Complete Guide To Tables . If I miss anything out feel free to add anything else:
    --------------------- Tutorial Start --------------------- Why? Why are they used? Why?!
    Tables are used every you go for organizing pictures and informtaion. Tables are used in search
    engines, games websites and this site too! They are used even without you knowing. Why do so many
    people use them? Because their so universal. You can use them to specifically align any given d....
  29. HTML tags and examples
    Condensed form of course from my site... (37)
    Well, I decided to try and help out some of the users here who might be unexperienced in HTML, so I
    condensed the begginer's HTML course at my website. Here it is... Lesson 1 HTML means Hyper
    Text Markup Language. HTML is a very common language used for many websites, is the base for more
    complicated and powerful langauges like php, HTML can seem hard, but you will find it is one of the
    easiest langauges one can learn. The core of HTML is the tag, a tage is just a set of two
    arrows-like brackets created by hitting Shift and the comma key, or Shift and the period....
  30. Html With Css
    a easy look at CSS (13)
    Cascading Stylesheets, or CSS, is a very easy way to spice up your web site. The thing I like about
    CSS, is it gives you a more extended version for styles. The tag for example is very limited with
    what it can do. With CSS though, you can do numerous things. from mouseovers (a:hover) to just
    changing a simple paragraph tag to a fancy one. there are two ways to incorperate the style
    sheet. the first one is to just put it inside your page: CODE all the stuff would go
    here - the second way is to link it to an outside source: ....

    1. Looking for , html, tables,
Similar
Create Dynamic Html/php Pages Using Simple Vb.net Code - Taking your application data, and creating a webpage for others to vie
Add Flashing Inbox To Invisionfree Forum - Html code for invsiionfree!!
Getting Started With Mysql - creating tables and insert data into them.
[php] Clean Code Functions - Clean up your html output from php scripts
Cakephp On Ubuntu - using your own public_html folder
Html Span
Html Bdo...
Want-to-start Html Tutorials - An HTML tutorial that covers the basics
Creating Navigation For Html Websites - Have a common navigation menu for the whole website!
Create A Simple Html Editor With Php And Javascript
Html Legend - Learn how to create a handy legend with HTML!
Spice Up Your Forms - With a bit of CSS and HTML alignment
Do You Want To Use Php Code In Your Html Pages? - Within two minutes you will!
How To Make A Simple File Based Shoutbox Using Php And Html
Simple Scripts In Html And Javascript - Things like BackgroundColorChanger and so
Document Type Declarations - And why we use them in html pages
Fast Template Design In Joomla Cms - Basic knowlege of Html needed
Integrating Html And Css Part 1
How To Create Tables
How To Create Html Page Anchors - Click A Link And Take You To A Certin Place On The Same Page
Multiple Classes In Html - you can use more than one at a time
Basic Html (for Us Kids)
Saint-michaels Html Tips And Tricks #4 - been awhile so here somewhat new stuff
Saint-michael Html Tips And Tricks Issue #3 - exploring meta tags and what uses they have
Saint Michael Xhtml Tips And Tricks #1 - xhtml= html 5.0 :P
Saint-michaels Html Tips And Tricks Issue # 2 - some more tricks of the trade and some wierd stuff to
Saint_michael Html Tips & Tricks Issue #1 - useful html stuff
A Complete Guide To Tables
HTML tags and examples - Condensed form of course from my site...
Html With Css - a easy look at CSS

Searching Video's for , html, tables,
See Also,
advertisement


How To: Html Tables. - I find these really useful.

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com