diff options
-rw-r--r-- | index.html | 17 | ||||
-rw-r--r-- | style.css | 17 | ||||
-rw-r--r-- | sub/index.html | 8 |
3 files changed, 42 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..9321280 --- /dev/null +++ b/index.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> + +<html lang="en"> + <head> + <title>Niclas Dobbertins Homepage</title> + <link rel="stylesheet" href="style.css"> + </head> + <body> + <h1>A new website is born!</h1> + <p>... nothing to see here PepeHands ...</p> + <a href="sub/">a subpage :)</a> + <div id="box-one"> + <p>This is box one</p> + </div> + + </body> +</html> diff --git a/style.css b/style.css new file mode 100644 index 0000000..5d60524 --- /dev/null +++ b/style.css @@ -0,0 +1,17 @@ +body { + font-family: Arial, sans-serif; + font-size: medium; + color: thistle; + background-color: #373b41; +} + +h1 { + color: HotPink; + text-align: center; +} + +#box-one { + background-color: thistle; + color: black; + opacity: 0.5; +} diff --git a/sub/index.html b/sub/index.html new file mode 100644 index 0000000..d4e36f4 --- /dev/null +++ b/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> |