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