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