commit fdec9c19ec5b38b086f93757e6805ec880e43140 parent 0d6baaeaa01cfdf53fa23e9f9c35d5a527d5af6b Author: bpaul <bpaul@bpaul.xyz> 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>