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