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