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