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