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