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