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