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