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