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