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