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