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