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