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