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