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