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