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