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