summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiclas Dobbertin <niclas.dobbertin@gmx.de>2020-07-15 22:33:00 +0200
committerNiclas Dobbertin <niclas.dobbertin@gmx.de>2020-07-15 22:33:00 +0200
commitd640521ad3be1fd8bacee07bf5eceecbfd79f94d (patch)
treedd4aa21229a1fb1c624b432ff19af82429f4a7f2
parentda861138cb5ddf0fc653bfd8c2d6119962d31aae (diff)
added basic html site
-rw-r--r--README.md2
-rw-r--r--allyn/index.html11
-rw-r--r--allyn/sub/index.html8
3 files changed, 20 insertions, 1 deletions
diff --git a/README.md b/README.md
index 63a0029..c814c87 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# Allyn, the city in the sky
-Repository for my personal website at nicdob.com
+Repository for my personal website at https://nicdob.com
## Empty space
diff --git a/allyn/index.html b/allyn/index.html
new file mode 100644
index 0000000..05c9d2c
--- /dev/null
+++ b/allyn/index.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>Niclas Dobbertins Homepage</title>
+ </head>
+ <body>
+ <h1>A new website is born!</h1>
+ <p>... nothing to see here PepeHands ...</p>
+ <a href="sub/">subpage</a>
+ </body>
+</html>
diff --git a/allyn/sub/index.html b/allyn/sub/index.html
new file mode 100644
index 0000000..d4e36f4
--- /dev/null
+++ b/allyn/sub/index.html
@@ -0,0 +1,8 @@
+<!DOCTYPE html>
+<html>
+ <body>
+ <h1>This is a subpage!</h1>
+ <p>... nothing to see here PepeHands ...</p>
+
+ </body>
+</html>