Difference between revisions of "Useful Code"
From AUAK Chronicals
(Created page with "Category:Writer's Help This page will have some useful code to remember ---- <pre> <table> <tr> <th style="vertical-align:top;"> </th> </tr> <tr> <td style="ve...") |
m |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | [[Category:Writer's Help]] | + | [[Category:Writer's Help]] [[Category:Coding]] |
This page will have some useful code to remember | This page will have some useful code to remember | ||
---- | ---- | ||
+ | ==Tables== | ||
<pre> | <pre> | ||
− | + | <table width="100%"> | |
− | + | <tr> | |
− | + | <th style="vertical-align:top;" colspan="2"> | |
− | + | ||
− | + | <!--this is a heading cell, centered and bold, also spans two below columns--!> | |
− | + | ||
− | + | </th> | |
− | + | </tr> | |
− | + | <tr> | |
− | + | <td style="vertical-align:top;"> | |
− | + | ||
− | + | <!--these are regular cells--!> | |
+ | |||
+ | </td> | ||
+ | <td style="vertical-align:top;"> | ||
+ | |||
+ | <!--the stuff in these tags right here won't show up on a page and are great for notes about what should go where--!> | ||
+ | |||
+ | </td> | ||
+ | </tr> | ||
+ | </table> | ||
</pre> | </pre> | ||
---- | ---- |
Latest revision as of 20:24, 17 January 2021
This page will have some useful code to remember
Tables
<table width="100%"> <tr> <th style="vertical-align:top;" colspan="2"> <!--this is a heading cell, centered and bold, also spans two below columns--!> </th> </tr> <tr> <td style="vertical-align:top;"> <!--these are regular cells--!> </td> <td style="vertical-align:top;"> <!--the stuff in these tags right here won't show up on a page and are great for notes about what should go where--!> </td> </tr> </table>