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