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