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