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