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