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