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