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