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