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