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