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