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