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