In website development almost each
and every data is placed in tables. To develop attractive
website its required to give some finishing touch to
tables and images. Using simple styles you can make
your presentation of data more attractive and your website
more eye catchy.
Thin Borders to Table:
When we define border=1 in table, system take a thick
border. Visibly its didn’t give attractive look.
To give a fine thin border, follow instruction given
below:
(first copy code
in notepad then copy code from notepad ->paste in
editor)
In table tag add this style-
<table
style="border:1px solid black">
<tr><td>RPGIS Pvt. Ltd. Is Delhi Based
web development company</td></tr>
</table>
|
Dotted Borders to Table:
In table tag add this style-
|
<table
style="border:1px dotted red">
<tr><td>RPGIS Pvt. Ltd. Is Delhi Based
web development company</td></tr>
</table> |
Dotted thick dotted Borders to Table:
In table tag add this style-
|
<table
style="border:2px dotted red">
<tr><td>RPGIS Pvt. Ltd. Is Delhi Based
web development company</td></tr>#E6F7FF
</table> |
Border for Images: Plane Border
|
<img src="website_development.jpg"
width="366" height="206" border="1"
style="border:1px red solid"> |
Border for Images: Dotted Border

<img src="website_designing.jpg"
width="366" height="206" border="1"
style="border:1px red dotted">
|
|