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