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