diff options
author | Wachiwi | 2013-12-17 14:53:36 +0100 |
---|---|---|
committer | Wachiwi | 2013-12-17 14:53:36 +0100 |
commit | 929ace25ee447c249c20ca29cd9d07bab637b4f7 (patch) | |
tree | 9a3dce4042e34c448f25f3f5c1d3191085a9b5a6 /index.html | |
parent | 9da2921b7452204b99cd1b3e448e22735f16c751 (diff) |
Table Style
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -131,6 +131,36 @@ </ol> </section> + <section> + <h2>Superb Tables</h2> + <table> + <thead> + <tr> + <th>Item</th> + <th>Value</th> + <th>Quantity</th> + </tr> + </thead> + <tbody> + <tr> + <td>Apples</td> + <td>$1</td> + <td>7</td> + <tr> + <tr> + <td>Lemonade</td> + <td>$2</td> + <td>18</td> + <tr> + <tr> + <td>Bread</td> + <td>$3</td> + <td>2</td> + <tr> + </tbody> + </table> + </section> + <section data-markdown> <script type="text/template"> ## Markdown support |