Use on the webTotal Use [ 6904 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/d31cc28c1a0e46afa622310fe9b835cb?family=Sisyphus+Variable" 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/d31cc28c1a0e46afa622310fe9b835cb?family=Sisyphus+Variable);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Sisyphus Variable";
src: url("https://db.onlinewebfonts.com/t/d31cc28c1a0e46afa622310fe9b835cb.eot");
src: url("https://db.onlinewebfonts.com/t/d31cc28c1a0e46afa622310fe9b835cb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/d31cc28c1a0e46afa622310fe9b835cb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/d31cc28c1a0e46afa622310fe9b835cb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/d31cc28c1a0e46afa622310fe9b835cb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/d31cc28c1a0e46afa622310fe9b835cb.svg#Sisyphus Variable")format("svg");
}
2CSS rules to specify fonts
font-family: "Sisyphus Variable";