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