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