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