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