website

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

commit 66ee328fb2191b49991b4e8e57750f4315d1fc8f
parent 79c246282e5ad61bacee7fb2482312ffb901031c
Author: Benjamin Paul <bpaul848@gmail.com>
Date:   Sun,  3 Jan 2021 16:51:43 +1000

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

Diffstat:
Ablog/1.html | 24++++++++++++++++++++++++
Ablog/index.html | 18++++++++++++++++++
Ablog/template.html | 17+++++++++++++++++
Mindex.html | 4++++
4 files changed, 63 insertions(+), 0 deletions(-)

diff --git a/blog/1.html b/blog/1.html @@ -0,0 +1,24 @@ +<html> + <head> + <title> + How to get good + </title> + </head> + <body> + <a href="/blog">back</a> + + <br><br> + + <h1>How to get good at something (with 2 easy steps!!!)</h1> + <p> + ok so to improve at something the 2 steps are: <br><br> + + 1. find what part of the thing you are not good at<br> + 2. get better at it<br><br> + + to apply this to getting good you would repeat this method until you are good<br><br> + + thanks for reading!! i hope this gave useful information you did not know (this is pretty mind blowing stuff) + </p> + </body> +</html> diff --git a/blog/index.html b/blog/index.html @@ -0,0 +1,18 @@ +<html> + <head> + <title> + bpaul blog + </title> + </head> + <body> + <a href="/">home</a> + + <br><br> + + blog + + <br> + + <a href="1.html">1. How to get good at something (with 2 easy steps!!!)</a> + </body> +</html> diff --git a/blog/template.html b/blog/template.html @@ -0,0 +1,17 @@ +<html> + <head> + <title> + bpaul blog + </title> + </head> + <body> + <a href="/blog">back</a> + + <br><br> + + <h1>Header</h1> + <p> + text + </p> + </body> +</html> diff --git a/index.html b/index.html @@ -6,5 +6,9 @@ </head> <body> hi im bpaul + + <br><br> + + <a href="/blog">blog</a> </body> </html>