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