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