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