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