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