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