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