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