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