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