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