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