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