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