Last active
December 9, 2023 06:35
-
-
Save balupton/9d486bb71c3fbb9ff66c14e2887ae307 to your computer and use it in GitHub Desktop.
Load Inter Font on Every Webpage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="preconnect" href="https://rsms.me/" /> | |
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" /> | |
<style> | |
:root, | |
html, | |
body | |
article, | |
p, | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
-webkit-font-smoothing: antialiased; | |
font-family: Inter, Comic Sans MS !important; | |
} | |
@supports (font-variation-settings: normal) { | |
:root, | |
html, | |
body | |
article, | |
p, | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
font-family: InterVariable, Comic Sans MS !important; | |
} | |
} | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! Title: Inter Font | |
! Description: Use the Inter font on all body content. | |
! Version: 0.1.2 | |
! Expires: 1 minute (update frequency) | |
! Homepage: https://gist.github.com/balupton/9d486bb71c3fbb9ff66c14e2887ae307 | |
! License: https://unlicense.org | |
*#%#(async function() { document.head.innerHTML += `<link rel="preconnect" href="https://rsms.me/" /> <link rel="stylesheet" href="https://rsms.me/inter/inter.css" /> <style>:root, html, body article, p, h1, h2, h3, h4, h5, h6 { -webkit-font-smoothing: antialiased; font-family: Inter, Comic Sans MS !important; } @supports (font-variation-settings: normal) { :root, html, body article, p, h1, h2, h3, h4, h5, h6 { font-family: InterVariable, Comic Sans MS !important; } }</style>` })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment