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