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