• 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


gujarati hot sex  brother sister chudai stories  milfs in mumbai  marathi chawat katha  rani mukherjee panty  chelli pukulo  pics of naked prostitutes  savita bhabhi bra seller  hot actress gifs  desi hindi sex kahania  pakistani urdu fucking stories 2016 aisa bhi hota hai  andhra sex aunty  sex urdu storis  xxx images desi  maa ki chudai  sexy prostitute stories  big bobs image  shakeela hot sex  sakila sex photo  hot shakeela images  shameless girls nude  telugu rep sex stories  savita bhabhi with bra salesman  blouse cleavage pics  sex stories telugu new  sexi kahani urdu  world greatest pornstar  rater atithi sex video  read sexy story in urdu  latest tamil sex kathaikal  desi aunty pee  lesbian chudai story  sex story in bangla front  fake aish  hema malini sexy boobs  desi hoties  mallu porn star  tamilsexstories.com  desi aunty forums  boor lund  hindi bhai bahen sex story  saath nibhaana saathiya apni tv  malayalam sex kadakal  sex story in roman hindi  tamil xxxn videos  marathi sexy katha  xossip adult  kamar dard k bhane chudayi  breastfeed sex stories  nepali sex websites  incset comics  vadina in telugu  tamil sex stories ucham  indiansex4u.com  mallu movie video  telugu aunty hot pictures  indian dps mms  xnx youtob  pantasya sex stories  incest comics xxx  hendi sexy story  sadafakes  armpits pictures  aunty bathing in river  real oriya sex stories  stories in urdu fonts  telugu aunties hot boobs  sexy desi girl picture  sex கதை பல ஆண்கள் ஒரு பெண்னை 18 வயது பயங்கரமான blackmail கதை  rani nude  kashmiri girls images  urdu sex stories yum  champa ki chudai  bollywood sex madhuri  arebian sex vidios  puku naku  mallu telugu sex stories  komalBhabhi.intamil  aunt ki chudai  tamil aunty pundai photo  telugu desi masala stories  xxx ki story