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