HOW TO SPEED UP INTERNET EXPLORER
Nobody likes a slow internet browser, and when it comes to slow Internet Explorer has a bad reputation of being slow, clunky and an overall pain. Browsers...
BOOT YOUR PC FAST
A faster boot up seems to be an elusive goal more than a reality. However, you can decrease the time it takes to start up your computer in Windows by minutes in some cases...
HACKING WITH NOTEPAD
Here is how you do a cool little hack with notepad. What it does is pops up a command prompts and overloads the computer and the computer CRASHES...
HOW TO RESTART YOUR COMPUTER WITHOUT RESTART YOUR PC
Guys sometimes you come across a stage where you need to restart your computer @ time of installing new software well but you don’t wanna restart as due to some reasons so what we can do is a Cold Reboot...
TOP 10 ENGINEERING COLLEGES IN INDIA -2011, 2012 LATEST RANKINGS
India is home to some of best engineering institutes that offer both under graduate and post graduate courses. In addition to the four metropolitan cities, the top colleges in India are located in other cities like Kanpur, Roorkee, Guwahati, Vellore, Kharagpur and Allahabad among several others...
Monday, 29 August 2011
Atomic Structure
Three‐Dimensional Shapes of Molecules
Three‐Dimensional Shapes of Molecules
| |||
Hybridization of Atomic Orbitals
Hybridization of Atomic Orbitals
- all of the carbon-hydrogen bond lengths are equal
- all of the hydrogen-carbon-hydrogen bond angles are equal
- all of the bond angles are approximately 110°
- all of the bonds are covalent
Adding Tables in HTML
Topics
I. Introduction
II. Creating a basic table
III. Adding a border, title, and headings
IV. Polishing your table
V. Creating links
Full Document
I. Introduction
You may want to consider using HTML tables in your website. In addition to creating HTML tables to present data in rows and columns, you can also create HTML tables to organize information on your web page.
The process of creating an HTML table is similar to the process that you used to create your web page and any elements that you may have already included in your page, such as links or frames. Coding HTML tables into your web page is fairly easy since you need only understand a few basic table codes.
II. Creating a basic table
The basic structure of an HTML table consists of the following tags:
Table tags:
Cell tags:
Constructing an HTML table consists of describing the table between the beginning table tag, , and the ending table table tag,
The following table is an example of a basic table with three rows and two columns of data.
Data 1 Data 2
Data 3 Data 4
Data 5 Data 6
The codes that generated this table look like this:
| Data 1 | Data 2 |
| Data 3 | Data 4 |
| Data 5 | Data 6 |
This table contains no border, title, or headings. If you wish to add any of these elements to your table, you need to include additional HTML codes. The codes for these elements are explained in the next section.
III. Adding a border, title, and headings
In addition to the basic table tags, several options are available for adding additional elements to your table. For example, if you add a border, title, and column headings to the table in the previous section, the table would then resemble the following:
TABLE TITLE
Column A Column B
Data 1 Data 2
Data 3 Data 4
Data 5 Data 6
The following codes generated the border, TABLE TITLE, and Column A and Column B headings for this table:
Note: If you wish to view the codes that generated the Data 1 through Data 6 cells, refer to the previous section. Notice that the beginning table tag,
| |
|---|---|
| Column A | Column B |
and
commands made the title larger. Finally, thetag created a space above the title. The individual column headings are also described by the heading codes, . Since these codes, by default, center the heading and set it in bold type, no additional commands or attributes were included in the heading commands. IV. Polishing your table To give your table a more polished look, you can include commands that will adjust the size of your table, add space in the cell, add space between rows, and align the data in a cell. Working with these commands is basically a process of trial and error to create the most appealing presentation of your information. The type of table that you create and the overall design of your web site will help you determine what works best for your table. Some of the commands that enable you to customize your table include: The WIDTH=n% command sets the width of your table as a percentage of the screen. The letter n designates the percentage that you assign to this command. For example, if you want the width of your table to be one half the width of the screen, you would include the WIDTH="50%" command in the beginning table command. The CELLPADDING=n command adjusts the vertical dimension of the cells. The letter n designates the numerical value that you assign to this command. The CELLSPACING=n command sets the space or border around the cells. The letter n designates the numerical value that you assign to this command. The ALIGN=(LEFT, RIGHT, or CENTER) command will horizontally align the data in a cell. For example, if you wish to place the data in the center of each cell in a row, you would include the ALIGN=CENTER command within the row command. The VALIGN=(TOP, MIDDLE, or BOTTOM) command will vertically align the data in a cell. For example, if you wish to place the data in the center of each cell in a row, you would include the ALIGN=MIDDLE command within the row command. In addition to the codes that were explained in the previous sections, the table below now includes some of these commands. TABLE TITLE Column A Column B Data 1 Data 2 The following codes, along with codes previously discussed, created this table:
| and | and |
|---|
TABLE TITLE | |
|---|---|
| Column A | Column B |
| Data 1 | Data 2 |







