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