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