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