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