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