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