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