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