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