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