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