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