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