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