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