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