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