website

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

commit 022908b074d4a47c6ad0905a277d238af939ac34
parent b5b77cbdc6bb88b8dfc58e21bd143729707cb6c3
Author: GuyClicking <bpaul848@gmail.com>
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>