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