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