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