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