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