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