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