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