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