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