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