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