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