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