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