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