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