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