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