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