diff options
author | nicdob <niclas.dobbertin@gmx.de> | 2020-08-14 23:27:41 +0200 |
---|---|---|
committer | nicdob <niclas.dobbertin@gmx.de> | 2020-08-14 23:27:41 +0200 |
commit | 3e5ab58d8244979daab15393f47ef0926b024f3e (patch) | |
tree | d9020add9b7a5c5933d0ead4294775aa42df19f5 | |
parent | d640521ad3be1fd8bacee07bf5eceecbfd79f94d (diff) |
added basic style.css
-rw-r--r-- | allyn/index.html | 10 | ||||
-rw-r--r-- | allyn/style.css | 17 |
2 files changed, 25 insertions, 2 deletions
diff --git a/allyn/index.html b/allyn/index.html index 05c9d2c..9321280 100644 --- a/allyn/index.html +++ b/allyn/index.html @@ -1,11 +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> + <h1>A new website is born!</h1> <p>... nothing to see here PepeHands ...</p> - <a href="sub/">subpage</a> + <a href="sub/">a subpage :)</a> + <div id="box-one"> + <p>This is box one</p> + </div> + </body> </html> diff --git a/allyn/style.css b/allyn/style.css new file mode 100644 index 0000000..5d60524 --- /dev/null +++ b/allyn/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; +} |