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