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