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