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