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