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