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