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