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