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