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