html | word |
---|---|
html is for the internet | application for documents |
table | with |
background | colors |
and border | manipulations |
and width | 60 % |
the below table with border 0 and 3 columns
LOGIN | NEWS | BUY SOMETHING |
LOGIN NAME:
PASSWORD |
KILLER SHARK KILLS FIVE
BILLIONAIRE KID KIDNAPPED |
NEW OFFER 75% OFF
BUY T-SHIRTS ONLINE FOR RS 233 |
this table | involves cell padding | |
and cell spacing and colspan | and rowspan | |
CODE
<html> <head> <title>the round table conference</title> </head> <body>
<table border="1" width="100%"> <tr> <th width="50%">html</td> <th width="50%">word</td> </tr> <tr> <td width="50%">html is for the internet</td> <td width="50%">application for documents</td> </tr></table>
<p> </p> <p> </p> <table border="3" width="60%"> <tr> <td width="50%" bgcolor="#FFFF00">table</td> <td width="50%" bgcolor="#FF00FF">with</td> </tr> <tr bgcolor="#00FFFF"> <td width="25%">background</td> <td width="*">colors</td> </tr> <tr> <td width="50%">and border</td> <td width="50%">manipulations</td> </tr> <tr> <td width="50%">and width</td> <td width="50%">60 %</td> </tr></table>
<p>the below table with border 0 and 3 columns</p> <table border="0" width="100%"> <tr bgcolor="red"> <td width="23%">LOGIN</td> <td width="70%">NEWS</td> <td width="*">BUY SOMETHING</td> </tr> <tr> <td >LOGIN NAME:<p>PASSWORD</td> <td >KILLER SHARK KILLS FIVE<p>BILLIONAIRE KID KIDNAPPED</td> <td >NEW OFFER 75% OFF<p>BUY T-SHIRTS ONLINE FOR RS 233</td> </tr></table>
<p> </p> <p> </p> <table border="1" width="100%" cellspacing="6" cellpadding="6"> <tr> <td width="50%">this table </td> <td width="50%">involves cell padding </td> </tr> <tr> <td width="50%" colspan="2">and cell spacing and colspan</td> <td width="50%" rowspan="2">and rowspan</td> </tr> <tr> <td width="50%" colspan="2"> </td> <td width="50%"> </td> </tr></table>
© neeraj<b>shinde</b> </body> </html>
|
© neerajshinde