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