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