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