commit 79c246282e5ad61bacee7fb2482312ffb901031c parent 7ad2bab182af470290a5b644b37cf43efac210d9 Author: Benjamin Paul <bpaul848@gmail.com> Date: Sun, 3 Jan 2021 16:51:30 +1000 cheatsheet Diffstat:
A | self-stuff/html-cheatsheet.html | | | 28 | ++++++++++++++++++++++++++++ |
A | self-stuff/vim-cheatsheet.html | | | 6 | ++++++ |
2 files changed, 34 insertions(+), 0 deletions(-)
diff --git a/self-stuff/html-cheatsheet.html b/self-stuff/html-cheatsheet.html @@ -0,0 +1,28 @@ +<html> + <body> + <table style="width:100%"> + <col style="width:25%"> + <col style="width:75%"> + <tr> + <th>Tag</th> + <th>Description</th> + </tr> + <tr> + <td><code><table></code></td> + <td>makes a table</td> + </tr> + <tr> + <td><code><tr></code></td> + <td>creates a row when used inside a table + </tr> + <tr> + <td><code><th></code></td> + <td>creates a header element for a table when used inside a tr row</td> + </tr> + <tr> + <td><code><td></code></td> + <td>creates an element for a table when used inside a tr row</td> + </tr> + </table> + </body> +</html> diff --git a/self-stuff/vim-cheatsheet.html b/self-stuff/vim-cheatsheet.html @@ -0,0 +1,6 @@ +<html> + <body> + <table> + </table> + </body> +</html>