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