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