|
|
|
Beyond Web usability: Web credibility
Web usability: It's old news If you've been developing websites on Mars for the past few years then you'll be forgiven for not knowing about web usability. You'll still be creating splash intro pages, having pages with massive download times and...
HTML Editors - How to Choose the Right One for Building Your Websites
There are lots of HTML editors on the market, however, you will want to look for one that has specific tools that will make building your websites easy, straightforward, and as stress-free as possible. Review the following requirements you should...
iKobo Review - Part 1
The Initial Discovery In April of 2004, I became aware of a company called iKobo as the result of a posting on Web Design Forums ( http://www.webdesignforums.net ), a website design discussion board. An individual who was new to the discussion...
Now you have a Web site. Have you ever heard of accessibility?
An accessible Web site is easily approached, easily understood, and useable for all. There are accessibility standards set forth by the World Wide Web Consortium, which all sites should adhere to as much as possible.
Web site owners should be...
Tapping Into The Visual Stimulus Of Your Web Site Visitors
"Oh, my eyes, my eyes! What an eye sore. Quick, click away! Click away!"
Suddenly I wake up in a cold sweat. What happened. Oh, then I realize: it was just a nightmare.
O.k., I'm not crazy, and no I haven't had this dream before. But...
|
|
| |
|
|
|
|
|
|
YOUR FIRST HTML PAGE - V
Tables are used to display information in an orderly manner. Incidentally, here we are not talking furniture. A table means tabular representation of certain data on your computer screen or in printed form.
== Step 8: ==
Ideally, a table consists of rows and columns. Mathematically, every table has at least one row, and at least one column.
In an empty square box, even if you don't see multiple vertical and horizontal lines, there is at least one row and at least one column.
So when we are defining a table, there are three tags that are deeply involved in the entire tabular configuration. The chief tag kindles the initiation. Then we have the child tag, namely, which brings on the row, and the last, but not the least, we have a grandchild tag here, which originates a column.
The legal sequence of these three tags goes like this:
The information you want to show off about.
Where n can be any positive number. Within every , there can be n numbers of , and within every , there can be n numbers of . Then you can have nested tables. For instance, within a single cell of nth row and mth column, you can have more tables.
Note: If the upper row has a single column, and the preceding one has multiple columns, its better to define the single-columned row in a separate table
Let's promenade through a day-to-day example. Let us create a tiny table displaying your marks in English, Mathematics and Philosophy, in two semesters and see how it fairs on your upcoming web page. Don't get intimidated by so many tags and their attributes - once you are able to create and apprehend the architecture of one table, you'll be able to create any kind of table.
Note: Within we can insert comments so that we can keep account of complex HTML coding. Literally, you insert the comments like this - Less-than sign, exclamation mark, dash dash, space, you comment, space, dash
dash, greater-than sign.
The code:
My Marks
English
Mathematics
Philosophy
SEM1
72%
82%
60%
SEM2
75%
78%
65%
If you want to discern what these lines do, save, and refresh your page.
WIDTH="100%" means a particular table should cover the entire width of your computer screen, and a particular column should cover the entire width of the table containing it. means the column is covering only 25% space of the stipulated table.
About the Author
Amrit Hallan is a freelance web designer. For all web site development and web promotion needs, you can get in touch with him at http://www.bytesworth.com. For more such articles, visit http://www.bytesworth.com/articles and http://www.bytesworth.com/learn You can subscribe to his newsletter [BYTESWORTH REACHOUT] on Web Designing Tips & Tricks by sending a blank email at Bytesworth-subscribe@topica.com
|
|
|
|
|
|