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