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