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