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