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