Inter Font for e33.io

I’ve updated the site to use Inter font. This free and open source font is designed by Rasmus Andersson and it looks totally awesome.

Inter is a typeface carefully crafted & designed for computer screens.

Inter features a tall x-height to aid in readability of mixed-case and lower-case text. Several OpenType features are provided as well, like contextual alternates that adjusts punctuation depending on the shape of surrounding glyphs, slashed zero for when you need to disambiguate “0” from “o”, tabular numbers, etc.

First I enqueued the Inter CSS link in the functions.php file.

wp_enqueue_style( 'evo-inter-font', 'https://rsms.me/inter/inter.css', false );

Then I added it to the stylesheet like this.

html {
	font-family: 'Inter', sans-serif;
}
@supports (font-variation-settings: normal) {
	html { font-family: 'Inter var', sans-serif; }
}