diff options
author | Mathias Magnusson <mathias@magnusson.space> | 2025-07-06 17:09:12 +0200 |
---|---|---|
committer | Mathias Magnusson <mathias@magnusson.space> | 2025-07-06 17:09:12 +0200 |
commit | 31ed77b2f4c7d012df22acc9963f0b57489c3216 (patch) | |
tree | 3375879326364cd860e3dbe3ff8f6ae9d3f35080 | |
parent | 049d655d42e63a6469890fed4276a5d1a3a8f68b (diff) | |
download | traedgaardstomten-31ed77b2f4c7d012df22acc9963f0b57489c3216.tar.gz |
Add a little bit of stuff
-rw-r--r-- | OpenSans-Italic-VariableFont_wdth,wght.ttf | bin | 0 -> 580280 bytes | |||
-rw-r--r-- | OpenSans-VariableFont_wdth,wght.ttf | bin | 0 -> 529700 bytes | |||
-rw-r--r-- | index.html | 7 | ||||
-rw-r--r-- | style.css | 33 |
4 files changed, 40 insertions, 0 deletions
diff --git a/OpenSans-Italic-VariableFont_wdth,wght.ttf b/OpenSans-Italic-VariableFont_wdth,wght.ttf Binary files differnew file mode 100644 index 0000000..67a1ac7 --- /dev/null +++ b/OpenSans-Italic-VariableFont_wdth,wght.ttf diff --git a/OpenSans-VariableFont_wdth,wght.ttf b/OpenSans-VariableFont_wdth,wght.ttf Binary files differnew file mode 100644 index 0000000..548c15f --- /dev/null +++ b/OpenSans-VariableFont_wdth,wght.ttf @@ -5,14 +5,21 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Trädgårdstomten.se</title> + <link rel="stylesheet" href="/style.css"> </head> <body> <header> + <section> + <p><i>Trädgårdstomten</i> ✂️</p> + </section> <nav> <a href="/">Hem</a> <a href="#">Kontakt</a> <a href="#">Om</a> </nav> </header> + <main> + <img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.istockphoto.com%2Fid%2F1276959334%2Fsv%2Fvektor%2Fvarningsskylt-med-symbol-f%25C3%25B6r-v%25C3%25A4garbeten.jpg%3Fs%3D170667a%26w%3D0%26k%3D20%26c%3Deu_R8EfjsmJL23wAgwiTYZma3NPnxKoCiKRDDeEKLsA%3D&f=1&nofb=1&ipt=d1cacf3ffad01b7159a201c2652b36aa73febb8dfd4e2fbe12fa0eb260d7af5c"> + </main> </body> </html> diff --git a/style.css b/style.css new file mode 100644 index 0000000..28c2567 --- /dev/null +++ b/style.css @@ -0,0 +1,33 @@ +* { + padding: 0; + margin: 0; + box-sizing: border-box; +} + +@font-face { + font-family: "OpenSans"; + src: url(/OpenSans-VariableFont_wdth,wght.ttf); +} + +body { + font-family: OpenSans; +} + +header { + text-align: center; +} + +header section { + padding-block: 2em; + font-size: 24px; +} + +header nav a, header nav a:visited { + color: green; + text-decoration: none; +} + +main { + padding-block: 2em; + text-align: center; +} |