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