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