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