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