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