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