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