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