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