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