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