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