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