website

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

commit 3cd390252b8811a821c2d8c0907a821005dfcc80
parent 7ad2bab182af470290a5b644b37cf43efac210d9
Author: GuyClicking <bpaul848@gmail.com>
Date:   Mon,  7 Dec 2020 18:06:33 +1000

blog + article 1

Diffstat:
Ablog/1.html | 25+++++++++++++++++++++++++
Ablog/index.html | 18++++++++++++++++++
Ablog/template.html | 13+++++++++++++
Mindex.html | 4++++
4 files changed, 60 insertions(+), 0 deletions(-)

diff --git a/blog/1.html b/blog/1.html @@ -0,0 +1,25 @@ +<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> + <br> + <p> + ok so to improve at something the 2 steps are: + + 1. find what part of the thing you are not good at + 2. get better at it + + to apply this to getting good you would repeat this method until you are good + + 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,13 @@ +<html> + <head> + <title> + bpaul blog + </title> + </head> + <body> + <a href="/blog">back</a> + + <br><br> + + </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>