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