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