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