• HOME
  • AWARDS
  • Search
  • Help
Current time: 30-07-2018, 02:48 AM
Hello There, Guest! ( Login — Register )
› LIFE STYLE › COMPUTER, MOBILE & GADGETS v
« Previous 1 2 3 4 5 6 7 ..... 12 Next »

Computers en.roksbi.ru School "HTML COMMAND GUIDE"

Verify your Membership Click Here

Pages ( 2 ): 1 2 Next »
Thread Modes
Computers en.roksbi.ru School "HTML COMMAND GUIDE"
rajbr1981 Offline
en.roksbi.ru Aapna Sabka Sapna
****
Verified Member100000+ PostsVideo ContributorMost ValuableExecutive Minister Poster Of The YearSupporter of en.roksbi.ruBee Of The Year
Joined: 26 Oct 2013
Reputation: 4,404


Posts: 118,530
Threads: 3,631

Likes Got: 20,942
Likes Given: 9,115


db Rs: Rs 2,905.1
#1
03-11-2014, 01:57 AM
en.roksbi.ru School "HTML COMMAND GUIDE"
[Image: 52.gif]
 •
      Website Find
Reply


rajbr1981 Offline
en.roksbi.ru Aapna Sabka Sapna
****
Verified Member100000+ PostsVideo ContributorMost ValuableExecutive Minister Poster Of The YearSupporter of en.roksbi.ruBee Of The Year
Joined: 26 Oct 2013
Reputation: 4,404


Posts: 118,530
Threads: 3,631

Likes Got: 20,942
Likes Given: 9,115


db Rs: Rs 2,905.1
#2
03-11-2014, 02:00 AM
A simple HTML table, containing two columns and two rows:

PHP Code:
<table>
  <
tr>
    <
th>Month</th>
    <
th>Savings</th>
  </
tr>
  <
tr>
    <
td>January</td>
    <
td>$100</td>
  </
tr>
</
table> 

Output

Month Savings
January $100

Definition and Usage

PHP Code:
The <table> tag defines an HTML table.

An HTML table consists of the <table> element and one or more <tr>, <th>, and <td> elements.

The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell.

A more complex HTML table may also include <caption>, <col>, <colgroup>, <thead>, <tfoot>, and <tbody> elements. 
[Image: 52.gif]
2 users like this post2 users like this post  • gungun, vkshs2013
      Website Find
Reply


rajbr1981 Offline
en.roksbi.ru Aapna Sabka Sapna
****
Verified Member100000+ PostsVideo ContributorMost ValuableExecutive Minister Poster Of The YearSupporter of en.roksbi.ruBee Of The Year
Joined: 26 Oct 2013
Reputation: 4,404


Posts: 118,530
Threads: 3,631

Likes Got: 20,942
Likes Given: 9,115


db Rs: Rs 2,905.1
#3
03-11-2014, 02:04 AM
The align attribute specifies the alignment of a table according to surrounding text.

Normally, an HTML table will have a break before and after it. The align attribute allows other HTML elements to wrap around the table.




Example

A right-aligned HTML table:
PHP Code:
<table align="right">
  <
tr>
    <
th>Month</th>
    <
th>Savings</th>
  </
tr>
  <
tr>
    <
td>January</td>
    <
td>$100</td>
  </
tr>
  <
tr>
    <
td>February</td>
    <
td>$80</td>
  </
tr>
</
table> 

Output

Month Savings
January $100
February $80




Attribute Values
left Left-aligns the table
right Right-aligns the table
center Center-aligns the table
[Image: 52.gif]
2 users like this post2 users like this post  • gungun, vkshs2013
      Website Find
Reply


rajbr1981 Offline
en.roksbi.ru Aapna Sabka Sapna
****
Verified Member100000+ PostsVideo ContributorMost ValuableExecutive Minister Poster Of The YearSupporter of en.roksbi.ruBee Of The Year
Joined: 26 Oct 2013
Reputation: 4,404


Posts: 118,530
Threads: 3,631

Likes Got: 20,942
Likes Given: 9,115


db Rs: Rs 2,905.1
#4
03-11-2014, 02:08 AM
bgcolor Attribute

Definition and Usage
The bgcolor attribute specifies a background color of a table.

Example:-
An HTML table with a background color:
PHP Code:
<table bgcolor="#00FF00">
  <
tr>
    <
th>Month</th>
    <
th>Savings</th>
  </
tr>
  <
tr>
    <
td>January</td>
    <
td>$100</td>
  </
tr>
</
table> 

Output

Month Savings
January $100

Attribute Values
color_name- Specifies the background color with a color name (like "red")
hex_number- Specifies the background color with a hex code (like "#ff0000")
rgb_number- Specifies the background color with an rgb code (like "rgb(255,0,0)")
[Image: 52.gif]
2 users like this post2 users like this post  • gungun, vkshs2013
      Website Find
Reply


rajbr1981 Offline
en.roksbi.ru Aapna Sabka Sapna
****
Verified Member100000+ PostsVideo ContributorMost ValuableExecutive Minister Poster Of The YearSupporter of en.roksbi.ruBee Of The Year
Joined: 26 Oct 2013
Reputation: 4,404


Posts: 118,530
Threads: 3,631

Likes Got: 20,942
Likes Given: 9,115


db Rs: Rs 2,905.1
#5
03-11-2014, 02:14 AM
border Attribute

Definition and Usage
The border attribute specifies if a border should be displayed around the table cells or not.

Example
The following HTML table will be displayed with borders around the table cells:

PHP Code:
<table border="1">
  <
tr>
    <
th>Month</th>
    <
th>Savings</th>
  </
tr>
  <
tr>
    <
td>January</td>
    <
td>$100</td>
  </
tr>
  <
tr>
    <
td>February</td>
    <
td>$80</td>
  </
tr>
</
table> 


Output


Month Savings
January $100
February $80

Attribute Values
"" - No borders around the table cells (the table could be used for layout purposes)
"1" - Add borders around the table cells (the table is NOT being used for layout purposes)
[Image: 52.gif]
2 users like this post2 users like this post  • gungun, vkshs2013
      Website Find
Reply


rajbr1981 Offline
en.roksbi.ru Aapna Sabka Sapna
****
Verified Member100000+ PostsVideo ContributorMost ValuableExecutive Minister Poster Of The YearSupporter of en.roksbi.ruBee Of The Year
Joined: 26 Oct 2013
Reputation: 4,404


Posts: 118,530
Threads: 3,631

Likes Got: 20,942
Likes Given: 9,115


db Rs: Rs 2,905.1
#6
03-11-2014, 02:18 AM
cellpadding Attribute
Definition and Usage
The cellpadding attribute specifies the space, in pixels, between the cell wall and the cell content.

Note: Do not confuse this with the cellspacing attribute, which specifies the space between cells.

Example
Set the space between the cell wall and the cell content to 10 pixels:

PHP Code:
<table cellpadding="10">
  <
tr>
    <
th>Month</th>
    <
th>Savings</th>
  </
tr>
  <
tr>
    <
td>January</td>
    <
td>$100</td>
  </
tr>
</
table> 

Output


Month Savings
January $100

Syntax
PHP Code:
<table cellpadding="pixels"> 

Attribute Values
pixels - The space between the cell wall and the cell content
[Image: 52.gif]
2 users like this post2 users like this post  • gungun, vkshs2013
      Website Find
Reply


rajbr1981 Offline
en.roksbi.ru Aapna Sabka Sapna
****
Verified Member100000+ PostsVideo ContributorMost ValuableExecutive Minister Poster Of The YearSupporter of en.roksbi.ruBee Of The Year
Joined: 26 Oct 2013
Reputation: 4,404


Posts: 118,530
Threads: 3,631

Likes Got: 20,942
Likes Given: 9,115


db Rs: Rs 2,905.1
#7
03-11-2014, 02:21 AM (This post was last modified: 03-11-2014, 02:38 AM by rajbr1981.)
cellspacing Attribute

Definition and Usage
The cellspacing attribute of table is not supported in HTML5.
The cellspacing attribute specifies the space, in pixels, between cells.

Note: Do not confuse this with the cellpadding attribute, which specifies the space between the cell wall and the cell content.


Example

Set the space between the cells to 10 pixels:


PHP Code:
<table cellspacing="10">
  <
tr>
    <
th>Month</th>
    <
th>Savings</th>
  </
tr>
  <
tr>
    <
td>January</td>
    <
td>$100</td>
  </
tr>
</
table> 

Output
Month Savings
January $100


Syntax
PHP Code:
<table cellspacing="pixels"> 

Attribute Values
pixels The space between cells
[Image: 52.gif]
2 users like this post2 users like this post  • gungun, vkshs2013
      Website Find
Reply


rajbr1981 Offline
en.roksbi.ru Aapna Sabka Sapna
****
Verified Member100000+ PostsVideo ContributorMost ValuableExecutive Minister Poster Of The YearSupporter of en.roksbi.ruBee Of The Year
Joined: 26 Oct 2013
Reputation: 4,404


Posts: 118,530
Threads: 3,631

Likes Got: 20,942
Likes Given: 9,115


db Rs: Rs 2,905.1
#8
03-11-2014, 02:33 AM
frame Attribute

Definition and Usage
The frame attribute specifies which parts of the outside table borders that should be visible.

Example

Display only the outside borders of a table:

PHP Code:
<table frame="box">
  <
tr>
    <
th>Month</th>
    <
th>Savings</th>
  </
tr>
  <
tr>
    <
td>January</td>
    <
td>$100</td>
  </
tr>
</
table> 

Output


Month Savings
January $100

Syntax
PHP Code:
<table frame="value"> 

Attribute Values
void The outside borders are not shown
above The top outside border is shown
below The bottom outside border is shown
hsides The top and bottom outside borders are shown
vsides The left and right outside borders are shown
lhs The left outside border is shown
rhs The right outside border is shown
box The outside borders are shown on all four sides
border The outside borders are shown on all four sides
[Image: 52.gif]
1 user likes this post1 user likes this post  • gungun
      Website Find
Reply


rajbr1981 Offline
en.roksbi.ru Aapna Sabka Sapna
****
Verified Member100000+ PostsVideo ContributorMost ValuableExecutive Minister Poster Of The YearSupporter of en.roksbi.ruBee Of The Year
Joined: 26 Oct 2013
Reputation: 4,404


Posts: 118,530
Threads: 3,631

Likes Got: 20,942
Likes Given: 9,115


db Rs: Rs 2,905.1
#9
03-11-2014, 02:43 AM
rules Attribute

Definition and Usage
The rules attribute specifies which parts of the inside borders that should be visible.
For practical reasons, it may be better to not specify any rules, and use CSS instead.

Example

Display only the borders between the rows:

PHP Code:
<table rules="rows">
  <
tr>
    <
th>Month</th>
    <
th>Savings</th>
  </
tr>
  <
tr>
    <
td>January</td>
    <
td>$100</td>
  </
tr>
</
table> 

Output


Month Savings
January $100


Syntax
PHP Code:
<table rules="value"> 

Attribute Values

none No lines
groups Lines between row groups and column groups
rows Lines between rows
cols Lines between columns
all Lines between rows and columns
[Image: 52.gif]
1 user likes this post1 user likes this post  • gungun
      Website Find
Reply


rajbr1981 Offline
en.roksbi.ru Aapna Sabka Sapna
****
Verified Member100000+ PostsVideo ContributorMost ValuableExecutive Minister Poster Of The YearSupporter of en.roksbi.ruBee Of The Year
Joined: 26 Oct 2013
Reputation: 4,404


Posts: 118,530
Threads: 3,631

Likes Got: 20,942
Likes Given: 9,115


db Rs: Rs 2,905.1
#10
03-11-2014, 02:46 AM (This post was last modified: 03-11-2014, 02:49 AM by rajbr1981.)
summary Attribute
Definition and Usage
The summary attribute specifies a summary of the content of a table.

Example

The following HTML table defines a summary of the content of the table:

PHP Code:
<table summary="Monthly savings for the Flintstones family">
  <
tr>
    <
th>Month</th>
    <
th>Savings</th>
  </
tr>
  <
tr>
    <
td>January</td>
    <
td>$100</td>
  </
tr>
</
table> 

Output

Month Savings
January $100


Syntax
PHP Code:
<table summary="text"> 

Attribute Values
text A summary of the content of the table
[Image: 52.gif]
1 user likes this post1 user likes this post  • gungun
      Website Find
Reply


« Next Oldest | Next Newest »
Pages ( 2 ): 1 2 Next »


Possibly Related Threads...
Thread Author Replies Views Last Post
Computers  Guide to buy super-tablet urpussysucker 0 1,662 09-02-2016, 01:46 PM
Last Post: urpussysucker
Computers  HTML Color Names & Code rajbr1981 15 4,881 02-02-2015, 01:37 AM
Last Post: rajbr1981
Computers  Shutdown Your Computer or a Remote PC via Command Prompt urpussysucker 0 1,638 13-01-2015, 12:30 PM
Last Post: urpussysucker
Computers  Command Prompt Tricks, Hacks & Codes urpussysucker 4 3,909 09-01-2015, 07:53 PM
Last Post: urpussysucker

  • View a Printable Version
  • Subscribe to this thread


Best Indian Adult Forum XXX Desi Nude Pics Desi Hot Glamour Pics

  • Contact Us
  • en.roksbi.ru
  • Return to Top
  • Mobile Version
  • RSS Syndication
Current time: 30-07-2018, 02:48 AM Powered By © 2012-2018
Linear Mode
Threaded Mode


desibees page 50  chavat marathi pranay katha  indian sexy storey  horney girls nude  naukar ka lund  shakeela nude boobs  beti aur baap  mumbai boobs  giral and boy xxx  sex stories in bengali font  kannada porn stories  romance stories in hindi  nangi sali  telugusex stiries  আমি বড় বাড়ার চোদন খেতে চাই  antarvasana hindi kahania  kevda comix  indian actress panty peek  holi sex story  telugu auntyes sex stories  tabkal kahana sexy images  incest stories urdu  mastram stories hindi language  sexy kahaniyaan  amatures videos  bhaiya ne meri  andhra ladies  madhu xxx.com  shakila pictures  girls watching guys jerk off  indian bhabhi exbii  desi shakeela hot  insest comix  rep kahani  new marathi chavat katha  indian house wifes pictures  nepali erotic story  dressed and undressed females  andhra aunty sex kathalu  tamil amma kamakathaikal in tamil language with photos  www.hindi sexyshairy.com  atta tho sex kathalu  blackmailing mom stories  desi sex tales  hindi font stories chudai  sexy seema  andaman nicobar port blair sex kahani  hindi sex story pdf file  adult jokes xxx  sexy sweaty armpits  desiaunty pics  telugu hot kathalu in telugu  sexies stories  tamil font sex stories  ladki photo  story xxx hindi  desibee rajasthan  tamil sexey  telugu reading sex stories  bangla choti forum  tamil sexs story  telugu sex stories desi  hii re zalim dhere kar part 40  buhu ki bina panty sort skart sexy story  x videos sheelaunty  indiasexytamil  nepali srx  suhagraat se pehle  latest telugu sex  dengulata  Popatlal xxx photo  ool kathaigal  bollywood boobs gif  jyothika hot exbii  booby indian girls  sex lund chut  hairy sweaty armpits  babilona navel  bangla old choti  south indian hairy armpit  penninte mula  telugu aunties hot pics  real life aunties pics  aunty nipple  desi incent stories  shakeela hottest  animal ke sath sex  dirty adult hindi jokes  hot mallu aunty stories  mallu sex site  miss muffy  hot desi mms clip  savita bhabhi and bra salesman