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