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