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