Use on the webTotal Use [ 5824 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/9802a793f2a506c75dbc081f52499ccc?family=Jan+Exodus+regular" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/9802a793f2a506c75dbc081f52499ccc?family=Jan+Exodus+regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Jan Exodus regular";
src: url("https://db.onlinewebfonts.com/t/9802a793f2a506c75dbc081f52499ccc.eot");
src: url("https://db.onlinewebfonts.com/t/9802a793f2a506c75dbc081f52499ccc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/9802a793f2a506c75dbc081f52499ccc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/9802a793f2a506c75dbc081f52499ccc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/9802a793f2a506c75dbc081f52499ccc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/9802a793f2a506c75dbc081f52499ccc.svg#Jan Exodus regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Jan Exodus regular";