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