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