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