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