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