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