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