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