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