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