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