website

The source code for https://bpaul.xyz
Log | Files | Refs

html-cheatsheet.html (870B)


      1 <html>
      2     <body>
      3         <table style="width:100%">
      4             <col style="width:25%">
      5             <col style="width:75%">
      6             <tr>
      7                 <th>Tag</th>
      8                 <th>Description</th>
      9             </tr>
     10             <tr>
     11                 <td><code>&lt;table&gt;</code></td>
     12                 <td>makes a table</td>
     13             </tr>
     14             <tr>
     15                 <td><code>&lt;tr&gt;</code></td>
     16                 <td>creates a row when used inside a table
     17             </tr>
     18             <tr>
     19                 <td><code>&lt;th&gt;</code></td>
     20                 <td>creates a header element for a table when used inside a tr row</td>
     21             </tr>
     22             <tr>
     23                 <td><code>&lt;td&gt;</code></td>
     24                 <td>creates an element for a table when used inside a tr row</td>
     25             </tr>
     26         </table>
     27     </body>
     28 </html>