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