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