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