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