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