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