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