website

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

commit 7eb7ef2312c9bc605428bc5610728c3f3dd16ad3
parent 473534196244c7b82a496353228e1fbddba45ca4
Author: bpaul <bpaul@bpaul.xyz>
Date:   Mon,  1 Mar 2021 22:14:31 +1000

Merge branch 'master' of git.bpaul.xyz:/var/www/git/website

Diffstat:
Aself-stuff/html-cheatsheet.html | 28++++++++++++++++++++++++++++
Aself-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>&lt;table&gt;</code></td> + <td>makes a table</td> + </tr> + <tr> + <td><code>&lt;tr&gt;</code></td> + <td>creates a row when used inside a table + </tr> + <tr> + <td><code>&lt;th&gt;</code></td> + <td>creates a header element for a table when used inside a tr row</td> + </tr> + <tr> + <td><code>&lt;td&gt;</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>