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