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