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