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