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