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