From 5771bb53e52d3cc0f0ede8330d12e5353dd87f4f Mon Sep 17 00:00:00 2001 From: arf20 Date: Sun, 1 Sep 2024 21:00:09 +0200 Subject: Fonts owo --- fonts/FSEX300.ttf | Bin 0 -> 575668 bytes fonts/terminus.ttf | Bin 0 -> 440944 bytes style.css | 12 ++++++++++++ 3 files changed, 12 insertions(+) create mode 100755 fonts/FSEX300.ttf create mode 100644 fonts/terminus.ttf diff --git a/fonts/FSEX300.ttf b/fonts/FSEX300.ttf new file mode 100755 index 0000000..a4f177c Binary files /dev/null and b/fonts/FSEX300.ttf differ diff --git a/fonts/terminus.ttf b/fonts/terminus.ttf new file mode 100644 index 0000000..eafa3a6 Binary files /dev/null and b/fonts/terminus.ttf differ diff --git a/style.css b/style.css index 1840a3c..d2554a9 100644 --- a/style.css +++ b/style.css @@ -1,3 +1,13 @@ +@font-face { + font-family: 'terminus'; /*a name to be used later*/ + src: url('/fonts/terminus.ttf'); /*URL to font*/ +} + +@font-face { + font-family: 'fixedsys'; /*a name to be used later*/ + src: url('/fonts/FSEX300.ttf'); /*URL to font*/ +} + header *{ display: inline-block; vertical-align: middle; @@ -6,11 +16,13 @@ header *{ .title { font-size: 36px; vertical-align: middle; + font-family: fixedsys; } body { background-image: url("tile1.jpg"); background-repeat: repeat; + font-family: terminus; } .fst { -- cgit v1.2.3