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