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