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