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