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