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