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