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