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