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