• 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


top mms scandal  choot & lund  the jetson xxx  pregnant exbii  tamil sex voice  telugu stories xxx  nepali esx  gujju sex  desi scandal forum  marathi chavat stories pdf  sucking her own boobs  gay sax story in hindi  erotic stories hindi  adult stories in bengali  telugu xxx vid  raping shemales  kajal agarwal pusy  marathi fuck story  indian sex stories forums  exbii aunty pic  urdu saxy storis  मेरा बेटा desibees  meri maro  hot sexy girls striping naked  mallu in exbii  bhabhi adult story  exbii south aunties  tamil udaluravu story  indian pronstar pic  latest sexy story in hindi  xxxxxxxx story  saina nehwal armpit  exbii hidden camera  sex incest toons  sexy bangla stories  chut me loda  சுன்னிய சப்பும் பாட்டி  tamil sex anni stories  chudai desi ki story  hot bengali aunties  tamilnadu hot aunties  sangeetha hot pic  teluguincest sex stories  adult breastfeeding photo  taiwanese amateur  malayalam xxn  angela devi forum  marathi sex comics  nudist aerobics  chut kya hai  malayam xx  online malayalam sex stories  nanga bollywood photo  maturepic  bliwjob pics  telugu amma sex stories  desi girls armpit  fuckstory in hindi  tamil dirty stories in thanglish  sexy hindi family story  ww.pundai30.com  miss muffy  www.desimaid.info  sexy story in gujarati  vasna ki kahani  vasna ki kahani in hindi  indian desi mms scandals  indian aunties changing saree  desi girls armpits  truth dare game me bhai ne muje fsakr meri chut mari  telugu heroines sex stories  tamil amma sex kathai