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