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