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