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