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