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