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