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