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