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