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