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