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