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