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