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