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