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