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