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