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