Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 32

Thread: HTML-Forms-Tables-part 3

  1. #21





  2. #22

  3. #23
    Tags Within a table



  4. #24
    Cell Spading and Cell Spacing





  5. #25
    Superb.Liked the demonstration best.

    Beautiful RAHEN.

  6. #26
    thank u so much yunus
    this tutorial is almost finished now. then i m gonna go with photoshop inshaAllah



  7. #27
    The Frame Attribute in a table.

    This example demonstrate how to use frame attribute to control the tables around a table

    <html>
    <body>

    <p>
    If you see no frames around the tables in these examples, your browser is too old, or does not support it.
    </p>

    <h4>With frame="border":</h4>
    <table frame="border">
    <tr>
    <td>First</td>
    <td>Row</td>
    </tr>
    <tr>
    <td>Second</td>
    <td>Row</td>
    </tr>
    </table>

    <h4>With frame="box":</h4>
    <table frame="box">
    <tr>
    <td>First</td>
    <td>Row</td>
    </tr>
    <tr>
    <td>Second</td>
    <td>Row</td>
    </tr>
    </table>

    <h4>With frame="void":</h4>
    <table frame="void">
    <tr>
    <td>First</td>
    <td>Row</td>
    </tr>
    <tr>
    <td>Second</td>
    <td>Row</td>
    </tr>
    </table>

    <h4>With frame="above":</h4>
    <table frame="above">
    <tr>
    <td>First</td>
    <td>Row</td>
    </tr>
    <tr>
    <td>Second</td>
    <td>Row</td>
    </tr>
    </table>

    <h4>With frame="below":</h4>
    <table frame="below">
    <tr>
    <td>First</td>
    <td>Row</td>
    </tr>
    <tr>
    <td>Second</td>
    <td>Row</td>
    </tr>
    </table>

    <h4>With frame="hsides":</h4>
    <table frame="hsides">
    <tr>
    <td>First</td>
    <td>Row</td>
    </tr>
    <tr>
    <td>Second</td>
    <td>Row</td>
    </tr>
    </table>

    <h4>With frame="vsides":</h4>
    <table frame="vsides">
    <tr>
    <td>First</td>
    <td>Row</td>
    </tr>
    <tr>
    <td>Second</td>
    <td>Row</td>
    </tr>
    </table>

    <h4>With frame="lhs":</h4>
    <table frame="lhs">
    <tr>
    <td>First</td>
    <td>Row</td>
    </tr>
    <tr>
    <td>Second</td>
    <td>Row</td>
    </tr>
    </table>

    <h4>With frame="rhs":</h4>
    <table frame="rhs">
    <tr>
    <td>First</td>
    <td>Row</td>
    </tr>
    <tr>
    <td>Second</td>
    <td>Row</td>
    </tr>
    </table>

    </body>
    </html>



  8. #28
    Align the content in a table cell

    This example demonstrate how to use the align attribute to align the content of cells, to create a well defined table

    <html>
    <body>

    <table width="400" border="1">
    <tr>
    <th align="left">Money spent on....</th>
    <th align="right">January</th>
    <th align="right">February</th>
    </tr>
    <tr>
    <td align="left">Clothes</td>
    <td align="right">500</td>
    <td align="right">800</td>
    </tr>
    <tr>
    <td align="left">electricity</td>
    <td align="right">900</td>
    <td align="right">800</td>
    </tr>
    <tr>
    <td align="left">Food</td>
    <td align="right">1000</td>
    <td align="right">1100</td>
    </tr>
    <tr>
    <th align="left">Sum</th>
    <th align="right">2400</th>
    <th align="right">2700</th>
    </tr>
    </table>

    </body>
    </html>




  9. #29
    Simple and crisp..aptly demonstrated for many novice users like me..Thank U...:-)
    As long as we have memories, yesterday remains..
    As long as we have love, today is beautiful..
    As long as we have hope tomorrow awaits...

    Kaho usise jo na kahe kisise..
    Maango usise jo dede khushi se..
    Chaaho use jo tumhe mile kismat se..
    Dosti karo usise jo hamesha nibhaaye hasi se...


  10. #30
    ur welcome.


    This tutorial is completed now



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •