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