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