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