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