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