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