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