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