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