Show Contents / Index / Search

HTML Table

//This sample code is intended to illustrate a concept, and it shows only the code that is relevant to that concept.

//It may not meet the security requirements for a specific environment, and it should not be used exactly as shown.

//We recommend that you add security and error-handling code to make your projects more secure and robust.

//Attachmate provides this sample code "AS IS" with no warranties.

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head>

  <title>HTML Test Page</title>

</head>

<body>

  <table border="1">

  <tbody>

    <tr id="first-table-tr">

      <td id="USDOLLAR">U.S. Dollars</td>

      <td>1</td>

      <td>1.3240</td>

      <td>108.25</td>

      <td>0.8114</td>

    </tr>

    <tr>

      <td>Canadian Dollars</td>

      <td>0.7553</td>

      <td>1</td>

      <td>81.7598</td>

      <td>0.6128</td>

    </tr>

    <tr>

      <td>Euros</td>

      <td><br>1.2325</br></td>

      <td>1.6318</td>

      <td>1</td>

      <td>133.4181</td>

    </tr>

    <tr>

      <td>Japanese Yen</td>

      <td>0.009238</td>

      <td>0.012231</td>

      <td>0.007495</td>

      <td>1</td>

    </tr>

  </tbody>

  </table>

</body>

</html>