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