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