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