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