website

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

commit 02cf333cb7ed112dd359a33aea006b6e05614f76
parent ca9203ef26be7285e01fb46e2fe6e64da2940529
Author: benjamin paul <bpaul@bpaul.xyz>
Date:   Sat, 17 Jul 2021 13:45:13 +1000

start on ascii art thing

Diffstat:
Mindex.html | 72+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
Cindex.html -> old.html | 0
2 files changed, 61 insertions(+), 11 deletions(-)

diff --git a/index.html b/index.html @@ -1,15 +1,65 @@ <html> - <head> - <title> - bpaul website - </title> - </head> - <body> - hi im bpaul +<head> + <meta charset="UTF-8"> +<style> +a { + color: inherit; + text-decoration: inherit; +} - <br><br> +body { + font-family: monospace; + color: white; + background-color: black; +} - <a href="/blog/">blog</a><br> - <a href="/linux-blog/">linux blog</a> - </body> +pre { + font-family: monospace; +} +</style> +</head> +<body> + This page will look wrong if you aren't using a monospace font.<br> + The old home page is <a href="/old.html">>>>here<<<</a> + <pre> + ________________________, + / /│ + / / │ + / / │ + / / │ + / / │ + / / │ +/_______________________/ │ +│ │ │ +│ │ │ +│ ____ ___ _____ │ │ +│ / ___│_ _│_ _│ │ │ +│ │ │ _ │ │ │ │ │ │ +│ │ │_│ ││ │ │ │ │ │ +│ \____│___│ │_│ │ │ +│ │ │ +│ ____ _ _ │ │ +│ │/ \\ /│_│_) │ │ +│ │\_/ \/\/ │_│ \ │ │ +│ │ │ +│ │ │ +│ │ │ +│ │ │ +│ │ │ +│ │ │ +│ │ │ +│ │ / +│ │ / │──────────│ +│ │ / │ Lemonade │ +│ _______ │ / │──────────│ +│ │ │ │ │ / │ o │ +│ │ │ │ │/ │__v__|____│ +│_______│___│___│_______r │__________│ +─────────────────────────────────────────────────────────────────────────── +─────────────────────────────────────────────────────────────────────────── + - - - - - - - - - - - - - - - - - - - - - - - - - +─────────────────────────────────────────────────────────────────────────── +─────────────────────────────────────────────────────────────────────────── + </pre> +</body> </html> diff --git a/index.html b/old.html