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