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