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