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