diff options
author | LarsVomMars | 2020-07-30 19:55:01 +0200 |
---|---|---|
committer | LarsVomMars | 2020-07-30 19:55:29 +0200 |
commit | f5f651d5180ddd12c57288d534129c8b00ff3162 (patch) | |
tree | bfa0de73233d9871d0efe17a585c1a1add79cb9a /src/public | |
parent | a937e79d29685d76af6138191f553fc82cbd2b1a (diff) |
Added font
Diffstat (limited to 'src/public')
-rw-r--r-- | src/public/css/style.css | 8 | ||||
-rw-r--r-- | src/public/fonts/ShareTechMono.ttf | bin | 0 -> 42756 bytes | |||
-rw-r--r-- | src/public/index.html | 11 | ||||
-rw-r--r-- | src/public/script.js | 0 | ||||
-rw-r--r-- | src/public/style.css | 0 | ||||
-rw-r--r-- | src/public/test.html | 13 |
6 files changed, 8 insertions, 24 deletions
diff --git a/src/public/css/style.css b/src/public/css/style.css index e69de29..d72bbc5 100644 --- a/src/public/css/style.css +++ b/src/public/css/style.css @@ -0,0 +1,8 @@ +@font-face { + font-family: "Share Tech Mono"; + src: url("/fonts/ShareTechMono.ttf") format("TrueType"); +} + +body { + font-family: "Share Tech Mono", monospace; +}
\ No newline at end of file diff --git a/src/public/fonts/ShareTechMono.ttf b/src/public/fonts/ShareTechMono.ttf Binary files differnew file mode 100644 index 0000000..c8e530f --- /dev/null +++ b/src/public/fonts/ShareTechMono.ttf diff --git a/src/public/index.html b/src/public/index.html deleted file mode 100644 index 99a87cd..0000000 --- a/src/public/index.html +++ /dev/null @@ -1,11 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <meta charset="UTF-8" /> - <meta name="viewport" content="width=device-width" /> - <title>Index</title> - </head> - <body> - body - </body> -</html> diff --git a/src/public/script.js b/src/public/script.js deleted file mode 100644 index e69de29..0000000 --- a/src/public/script.js +++ /dev/null diff --git a/src/public/style.css b/src/public/style.css deleted file mode 100644 index e69de29..0000000 --- a/src/public/style.css +++ /dev/null diff --git a/src/public/test.html b/src/public/test.html deleted file mode 100644 index b188db3..0000000 --- a/src/public/test.html +++ /dev/null @@ -1,13 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="UTF-8" /> - <title>Title</title> - </head> - <body> - <h1>Home :)</h1> - <% if (name) { %> - <h1>hello, <%= name %>!</h1> - <% } %> - </body> -</html> |