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