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