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