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