Today (20 Jan 2022) I added two new pages:
These pages are much simpler than the previous ones.
I figured out that if you just add this little bit of code to any plain, unstyled HTML file, it will convert it into a simple but stylish page with a 30px margin and Arial etc font. This is what I like to call the “Instant webpage”.
<!DOCTYPE html><meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>html { margin: 30px; font-family: Arial, Helvetica, sans-serif }</style>
<title>All Things Circles - Gabriel's Website</title>
By using this code instead of the usual multicoloured theme, there are a few certain benefits.
- The site is easy to manage
- The site is simple and clear
- The pages are extremely quick to make.
[End]