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