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