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