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