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