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