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