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