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