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