diff options
author | Niclas Dobbertin <niclas.dobbertin@gmx.de> | 2020-07-15 22:33:00 +0200 |
---|---|---|
committer | Niclas Dobbertin <niclas.dobbertin@gmx.de> | 2020-07-15 22:33:00 +0200 |
commit | d640521ad3be1fd8bacee07bf5eceecbfd79f94d (patch) | |
tree | dd4aa21229a1fb1c624b432ff19af82429f4a7f2 | |
parent | da861138cb5ddf0fc653bfd8c2d6119962d31aae (diff) |
added basic html site
-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> |