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