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