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