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