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