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