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