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