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