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