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