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