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