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