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