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