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