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