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