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