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
Copy file name to clipboardExpand all lines: README.md
+51-2Lines changed: 51 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,19 +8,68 @@ 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 websites public/static directory, here they have a `/fonts/` prefix.
24
+
25
+
Copy the below snippet into your CSS file:
26
+
27
+
```css
28
+
@font-face {
29
+
font-family: 'ServerMono';
30
+
src: url('/fonts/ServerMono-Regular.woff2') format('woff2'), /* Best compression, modern browsers */
31
+
url('/fonts/ServerMono-Regular.woff') format('woff'), /* Good compression, wider support */
32
+
url('/fonts/ServerMono-Regular.otf') format('opentype'); /* Largest files, universal support */
0 commit comments