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