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