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