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