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
A CSS file that can be referenced to import the font for use on a webpage.
For a live example see <link href="https://fonts.googleapis.com/css?family=Dosis" rel="stylesheet">.
This example can be used to import the Dosis font.
A potential implementation could look like: <link href="https://cdn.jsdelivr.net/gh/ThomasJockin/readexpro@master/fonts/css/ReadexPro.css" rel="stylesheet">
Referring to a file looking like:
@charset"UTF-8";
/* For information on this font see: https://www.lexend.com/ */@font-face {
font-family:'ReadexPro';
src:url(https://cdn.jsdelivr.net/gh/ThomasJockin/readexpro@master/fonts/ttf/ReadexPro-Regular.ttf) format('ttf');
font-weight: normal;
}
@font-face {
font-family:'ReadexPro';
src:url(https://cdn.jsdelivr.net/gh/ThomasJockin/readexpro@master/fonts/ttf/ReadexPro-bold.ttf) format('ttf');
font-weight: bold;
}
@font-face {
font-family:'ReadexPro';
src:url(https://cdn.jsdelivr.net/gh/ThomasJockin/readexpro@master/fonts/ttf/ReadexPro-Light.ttf) format('ttf');
font-weight: lighter;
}
The text was updated successfully, but these errors were encountered:
A CSS file that can be referenced to import the font for use on a webpage.
For a live example see
<link href="https://fonts.googleapis.com/css?family=Dosis" rel="stylesheet">
.This example can be used to import the Dosis font.
A potential implementation could look like:
<link href="https://cdn.jsdelivr.net/gh/ThomasJockin/readexpro@master/fonts/css/ReadexPro.css" rel="stylesheet">
Referring to a file looking like:
The text was updated successfully, but these errors were encountered: