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