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