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