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