diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | allyn/index.html | 11 | ||||
-rw-r--r-- | allyn/sub/index.html | 8 |
3 files changed, 20 insertions, 1 deletions
@@ -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> |