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