TABLE R & C URLs

Adding URLs to your data

Row 1 duck Cell 3 duck Cell 5
Row 2 duck Cell 4
Row 3
spacer 2

TABLE Cell URLs (example 3)

You will need to add a URL link to your data file name so that the researcher can call the file and read it.  This is very simple as shown in the following table.  I created a "class" style in my CSS file to reduce typing for the URL in each of the File Name cells.  Then I used the "class selector" in the URL to define the style for the text that follows the URL in each of the File Name cells.

The class style in the CSS file defines the font size, font color, font family and font weight (bold).  You can change the class style parameters easily in the CSS file to suit your tastes.  If you use the same class style for all of your File Name cell URLs, they will be displayed uniformaly with the same style.

Example 2 using URLs in cells

<table border="7" style="border-color:#900" cellpadding="5">
  <tr class="trtext1">
    <td width="60%">File Name</td>
    <td width="10%">File Size</td>
    <td width="10%">Date Submitted</td>
    <td width="20%">Submitter</td>
  </tr>
  <tr bgcolor="#FFFF99">
    <td><a class="bl14b" href="index.html">File for research purposes</a></td>
    <td>24 K</td>
    <td>Jan 2014</td>
    <td>Bryant Walker</td>
  </tr>
  <tr>
    <td><a class="bl14b" href="index.html">Row 2 - Cell 1</a></td>
    <td>Cell 2</td>
    <td>Cell 3</td>
    <td>Cell 4</td>
  </tr>
</table>
File Name File Size Date Submitted Submitter
File for research purposes 24 K Jan 2014 Bryant Walker
Row 2 - Cell 1 Cell 2 Cell 3 Cell 4

CLICK FOR PAGE 4 of this discussion


Previous Page Next Page