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