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