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