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