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