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