Libretype

Go

The Go font family was created by Bigelow & Holmes for the Go programming language.

Adding to your site

CSS method

Add this line to the top of your site's CSS file. It must be at the very top of the file or it won't work. (more info)

@import url("https://libretype.net/s/go.css");

This import rule tells your browser to download the font, but you won't actually see the font until you apply it to some text on your site. Here's an example to change all <body> text to use the Go font:

body {
    font-family: "Go", sans-serif;
}

The text after font-family and before the ; is a comma-separated list of fonts. If the first font is unavailable or has problems loading, the next listed font will be used. The last font should always serif, sans-serif, or monospace, since those are built-in fonts every browser should have.

HTML method