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