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