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