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