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