• 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


dost ki mummy  urdu sex story urdu font  kashmiri videos  incest mother comics  mast hindi sex stories  karenjit vohra  apni sex kahani  bangla inchest  india sex kahaniya  www.vieods.com  hijra crossdresser  mami ne sikhaya  nude indianbabes  best hindi sex kahaniya  srilankan sex pics  balatkar story  hidden mms scandals  tamil inba kathai  meri pyari mami  chavat kavita  family insent  sexy hindi story book  new family sex story in hindi  suhagrat sex stories in hindi  telugu kadalu  burhotsex  desi sex story in hindi fonts  x hindi sex videos  vahini marathi story  girls watching boys jerk off  desibee - lady doc  saree navel aunties  desi sex kahaniyan  desi dex stories  lucy fire pics  arpita aunty pictures  sex storeis in telugu  srilanka fuck  tamil dirty stiry  hindi sex kahaniya in hindi font  doodhwali bhabhi  couples dressed undressed  couples dressed and undressed  urdo sexy story  ras bhari choot  incest stories in hindi fonts  bhai bahan hindi sex stories  hot sex story malayalam  मस्तराम कथा संग्रह  xxx adult jokes  telugu dirty stories  telugu aunties sex story  maa beta incest stories  sexstories in tamil font  antravasna hindi sex stories  insect comics  nangi lund  urdu stories in urdu fonts  dadi ke sath  watch desi sex clips  mastram sex stories marathi ait  mms xxx videos  south indian aunty photos  boobies nude pics  marathi ashlil sahitya  telugu aunts  sex stories in malayalm  kambi photos aunties  indian hijra images  rani mukherjee in nude  big titted indians  anna swan largest vagina  fucking videos of tamil  adult bangla story  amma magan stories  www.sexhomo.com  www.telugu sex stores  lesbain sez  sexy stories hindi me  bollywood nip slip image  sexy goshti  desi lesbian kahani  desiporn videos  charmi thunder thighs  kahaniz.com urdu font  hinde sex store  hindi and marathi sex stories  kamasutra real pictures  teen sexy viedo  karachi beach sex  desi booby aunty  booby desi aunty  sex malayalam pdf