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