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