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