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