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