• 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


क्योंजी मल और कैसै कैसै लिया  indian insect story  chut ras  sister ke saath sex  marathi sex blogs  desi sex scandals clips  original homemade porn  sxy storys  mallu mula pictures  tamil sex saree  tamilu aunty  hindi sex story hindi font  neha nair gallery  indian hairy armpit girls  sluty mum  telugu sex stories maradalu tho  sex kathalu telugu  hindi kahani desi  hindi ki sexy stories  naked indian aunties  malayalam sexxx  aunty pundai mudichudai  hot kambi photos  exbii armpit  sexy rupali  www.hindi sexy stori  hinde sax stori  aunty ki boor  sexy stories in roman english  tamil akka sex kathai  adult story desi  tamil diry stories  andhra hot girl  gggggggggg. gand vide  desi girl village  kamavari images hq  hot telugu sexstories  telugu pinni dengudu kathalu  latest indian mms clips scandals  telugusex storys  arpita bhabhi  sexivadina  wwww.looti.net  Uangli krna xxx muat mara video  aunty kambi  hema malini armpits  desi thunder thighs  adult stories in bengali  sexy hindi stories in hindi fonts  sexi hijra  phuddi pics  taiwanese amateur  देवर जी मेरी पेंटी कहा फेक दी रात को  indian aunty exbii  nude oriya actress  मेरा बेटा desibees  honeymoon video xxx  tamil udaluravu story  hindi kahaniya sex  ungli dali  baap beti hindi sex story  hindi chut stories  bhai behan ki kahani  girl loosing her virginity videos  sex stories bangla font  stretched pussy pic  desi teacher story  hot sex kahaniya  sneha sucking  exbii polls  tamil sex kavithai  bhai ka lund  hindi sex stories bhabhi ki chudai  exbii indian bhabhi  recent telugu sex kathalu  sex stories desi in hindi  desi wet aunties  chudai hindi sex story  sexy stpries  tamil sex stories peperonity  telugu sex stories telugu  anni sex story  husband swap sex stories  desi gaand in desi dresses  tamilsex phots  chudai pics story  mummy papa ki chudai  sexy stores urdu  choot chat  kannada sex stories  tamil sexystories  indiansluts  hot kerala chechi  seex stories