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