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