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