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