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