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