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