From e2f37b0a2d377af5ada235da053a46e524833691 Mon Sep 17 00:00:00 2001 From: jasLogic <44301923+jasLogic@users.noreply.github.com> Date: Tue, 16 Jul 2019 19:47:40 +0200 Subject: [PATCH] initial commit --- 404.html | 18 ++++++++++++++++++ LICENSE | 7 +++++++ README | 3 +++ index.html | 26 ++++++++++++++++++++++++++ stylesheet.css | 27 +++++++++++++++++++++++++++ 5 files changed, 81 insertions(+) create mode 100644 404.html create mode 100644 LICENSE create mode 100644 README create mode 100644 index.html create mode 100644 stylesheet.css diff --git a/404.html b/404.html new file mode 100644 index 0000000..d42b089 --- /dev/null +++ b/404.html @@ -0,0 +1,18 @@ + + + + + 404 + + + +

404

+

This page doesn't seem to exist.

+

goto home;

+ + + + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..936d627 --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +Copyright (C) 2019 jasLogic + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README b/README new file mode 100644 index 0000000..c22f74b --- /dev/null +++ b/README @@ -0,0 +1,3 @@ +# README + +Here is just the source code of my website. diff --git a/index.html b/index.html new file mode 100644 index 0000000..a8b3ba6 --- /dev/null +++ b/index.html @@ -0,0 +1,26 @@ + + + + + jasLogic + + + + +

jasLogic

+

Welcome to my personal website!

+ +

git

+

+ You can have a look at my official + GitHub repositories + or view my personal git repositoies + where the also the source code of this site is hosted. +

+ + + + diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..1dd982d --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,27 @@ +* { + font-family: "Courier New", monospace; + margin: 0px; + padding: 0px; + max-width: 700px; +} + +body { + padding: 10px; +} + +h2 { + padding-top: 20px; +} + +p { + padding-top: 5px; + padding-left: 10px; +} + +footer { + padding-bottom: 20px; + padding-left: 10px; + position: fixed; + bottom: 0; + left: 0; +} -- 2.30.2