HTML format

<< Click to Display Table of Contents >>

Navigation:  Reference > File formats >

HTML format

Easy Data Transform can output to tables in HTML format files. File extension ".html".

 

HTML (HyperText Markup Language) format is commonly used for creating web pages. If you don't need the data to take up a whole page, you can just copy the <table> to </table> part of the output.

 

For example:

 

output-example

 

Is output as:

 

<!DOCTYPE html>

<html>

  <head>

    <meta charset="UTF-8"/>

    <title>C:\Users\andyb\Desktop\output7.html</title>

    <style>table,td,th{border:1px solid black;text-align:left;vertical-align:top;border-spacing:0px;border-color:gray;font-family:Verdana,sans-serif;}th{background-color:#E0E0E0;}td,th{padding:5px;}</style>

  </head>

  <body>

    <table>

      <tbody>

        <tr>

          <th>CategoryID</th>

          <th>CategoryName</th>

          <th>Description</th>

          <th>In stock</th>

        </tr>

        <tr>

          <td>1</td>

          <td>Beverages</td>

          <td>Soft drinks, coffees &amp; teas</td>

          <td>true</td>

        </tr>

        <tr>

          <td>2</td>

          <td>Condiments</td>

          <td>Sweet and savory sauces</td>

          <td>false</td>

        </tr>

        <tr>

          <td>3</td>

          <td>Confections</td>

          <td>Candies and sweet breads</td>

          <td>true</td>

        </tr>

      </tbody>

    </table>

  </body>

</html>