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