diff options
| -rwxr-xr-x | fonts/FSEX300.ttf | bin | 0 -> 575668 bytes | |||
| -rw-r--r-- | fonts/terminus.ttf | bin | 0 -> 440944 bytes | |||
| -rw-r--r-- | style.css | 12 | 
3 files changed, 12 insertions, 0 deletions
diff --git a/fonts/FSEX300.ttf b/fonts/FSEX300.ttf Binary files differnew file mode 100755 index 0000000..a4f177c --- /dev/null +++ b/fonts/FSEX300.ttf diff --git a/fonts/terminus.ttf b/fonts/terminus.ttf Binary files differnew file mode 100644 index 0000000..eafa3a6 --- /dev/null +++ b/fonts/terminus.ttf @@ -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 {  | 
