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