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