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