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