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