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