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