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