You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: improve README download and usage sections (#25)
* feat: update README.md with a few new sections for how to download and use server mono
* feat: add new ASCII art
* feat: update README.md copy
* fix: nit on ServerMono in quotes
Copy file name to clipboardExpand all lines: README.md
+53-2Lines changed: 53 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,19 +8,70 @@ Server Mono continues the long tradition of monospace fonts, renowned for their
8
8
9
9
This single-weight font was released in 2024 by the Internet Development Studio Company of Seattle, Washington. Created by designers Tim Vanhille and Matthieu Salvaggio, with supplemental direction from Jimmy Lee and the Internet Development Studio Company community.
10
10
11
-
### Setup Website (MacOS)
11
+
## Download
12
+
13
+
You can download the latest version from our [GitHub Releases](https://github.com/internet-development/www-server-mono/releases) page.
14
+
15
+
Alternatively, you can install it locally using [Homebrew `font-server-mono`](https://formulae.brew.sh/cask/font-server-mono)
16
+
17
+
```bash
18
+
brew install --cask font-server-mono
19
+
```
20
+
21
+
## Usage
22
+
23
+
Add the downloaded font files to your website's public/static directory. The examples below use a `/fonts/` prefix, but you can adjust this path to match your project structure.
24
+
25
+
Copy the below snippet into your CSS file:
26
+
27
+
```css
28
+
/* Regular weight - used for normal text */
29
+
@font-face {
30
+
font-family: 'ServerMono';
31
+
src: url('/fonts/ServerMono-Regular.woff2') format('woff2'), /* Best compression, modern browsers */
32
+
url('/fonts/ServerMono-Regular.woff') format('woff'), /* Good compression, wider support */
33
+
url('/fonts/ServerMono-Regular.otf') format('opentype'); /* Largest files, universal support */
34
+
font-weight: normal;
35
+
font-style: normal;
36
+
font-display: swap;
37
+
}
38
+
39
+
/* Slanted variant - used for italic/oblique text */
0 commit comments