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