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