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