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