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