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